我想修改 Mozc 设置。
问题:点击右边的齿轮Japanese (Mozc)
没有效果:
在以前版本的 Ubuntu 上,一种解决方法是从命令行运行/usr/lib/mozc/mozc_tool --mode=config_dialog
,但该可执行文件不再存在(使用相同参数运行时,同一文件夹中的mozc_server
andmozc_renderer
似乎没有做任何事情)。
是否有打开 Mozc 设置的解决方法?它们应该看起来像这样:
我想修改 Mozc 设置。
问题:点击右边的齿轮Japanese (Mozc)
没有效果:
在以前版本的 Ubuntu 上,一种解决方法是从命令行运行/usr/lib/mozc/mozc_tool --mode=config_dialog
,但该可执行文件不再存在(使用相同参数运行时,同一文件夹中的mozc_server
andmozc_renderer
似乎没有做任何事情)。
是否有打开 Mozc 设置的解决方法?它们应该看起来像这样:
默认情况下,Byobu 状态栏包含大量有关分发、更新、CPU 等的信息。
我想删除所有这些。
我只想看到我打开的终端(当然还有当前终端)的“标签”。
怎么做?
我公司的员工网站可以访问:
employees.corp.com
employees.corp.com
问题:在家上下班后,employees.corp.com
从公司内部访问网站经常失败。
ping employees.corp.com
它会说64 bytes from w91284.telco.com (1.2.3.4): icmp_seq=1 ttl=255 time=2.08 ms
.employees.corp.com
一直在内部和外部浏览,没有问题。我也是唯一一个使用 Linux 的人(Ubuntu 2018.04 从头开始安装,但我在 2016.04 上遇到了同样的问题)。当发生这种情况时,我找到了两种解决方法:
employees.corp.com
解决方法 A:编辑要替换的URL192.168.1.2
sudo service network-manager restart
这两种解决方法都可以暂时解决问题,但没有一个是令人满意的,因为它们每天都在浪费时间。什么是永久的解决方案?
禁用或缩短 DNS 缓存会使整个 Internet 的访问速度变慢,所以我希望它仅限于这个特定的域。我也对完全不同的解决方案持开放态度。
我正在尝试使用https://help.ubuntu.com/community/VMware/Player上的说明安装 VMware
我收到一个错误,告诉我查看一个日志文件,其中包含:
Extracting the vmmon source from "/usr/lib/vmware/modules/source/vmmon.tar".
Successfully extracted the vmmon source.
Building module with command "/usr/bin/make -j4 -C /tmp/modconfig-GoVdrH/vmmon-only auto-build HEADER_DIR=/lib/modules/4.15.0-22-generic/build/include CC=/usr/bin/gcc IS_GCC_3=no"
Failed to build vmmon. Failed to execute the build command.
为了弄清楚到底出了什么问题,我vmware-modconfig --console --install-all
在命令行上运行,它显示了以下错误:
./arch/x86/include/asm/processor-flags.h:39:0: note: this is the location of the previous definition
#define CR3_PCID_MASK 0xFFFull
^
/tmp/modconfig-3S1CBa/vmmon-only/linux/driver.c:256:12: error: ‘struct timer_list’ has no member named ‘data’
tscTimer.data = 0;
unsigned int lockedPages = global_page_state(NR_PAGETABLE) +
^~~~~~~~~~~~~~~~~
global_numa_state
/tmp/modconfig-3S1CBa/vmmon-only/linux/driver.c: In function ‘init_module’:
/tmp/modconfig-3S1CBa/vmmon-only/linux/driver.c:338:4: error: implicit declaration of function ‘init_timer’; did you mean ‘init_timers’? [-Werror=implicit-function-declaration]
init_timer(&tscTimer);
^~~~~~~~~~
init_timers
/tmp/modconfig-3S1CBa/vmmon-only/linux/hostif.c: In function ‘HostIF_InitUptime’:
init_timers
/tmp/modconfig-3S1CBa/vmmon-only/linux/hostif.c:1754:31: error: assignment from incompatible pointer type [-Werror=incompatible-pointer-types]
uptimeState.timer.function = HostIFUptimeResyncMono;
LinuxDriverSyncReadTSCs(uint64 *delta) // OUT: TSC max - TSC min
^~~~~~~~~~~~~~~~~~~~~~~
cc1: some warnings being treated as errors
cc1: some warnings being treated as errors
scripts/Makefile.build:332: recipe for target '/tmp/modconfig-3S1CBa/vmmon-only/linux/hostif.o' failed
make[2]: *** [/tmp/modconfig-3S1CBa/vmmon-only/linux/hostif.o] Error 1
Makefile:110: recipe for target 'vmmon.ko' failed
make: *** [vmmon.ko] Error 2
如何修复它,或者使隐式函数声明和不兼容指针类型不被视为错误?
或者有什么更简单的方法可以在 18.04 上安装最新的 VMware?
注意:与 Ubuntu 16.04 上的 VMWare Workstation Pro 12 不同的错误无法编译 vmmon
我想禁用该Super键,当我按下时Super不会发生任何事情。
我想保留其他快捷键,例如Super+ Left。
我怎样才能做到这一点?
(2012 年的相同问题,18.04 中没有一个解决方案有效,包括接受的答案)
(2012 年的相同问题,但接受的答案不起作用)
在 Ubuntu 2016.04 的默认 Apache2 中,我尝试添加一个具有别名的虚拟主机:
sudo mkdir /var/www/simplesamlphp
echo "Hello" > /var/www/simplesamlphp/index.html (as root)
sudo chown -R www-data:www-data /var/www/simplesamlphp
sudo chmod -R 755 /var/www
其次,我创建了/etc/apache2/sites-available/simplesamlphp.conf
:
<VirtualHost *>
ServerName simplesamlphp
DocumentRoot /var/www/simplesamlphp
SetEnv SIMPLESAMLPHP_CONFIG_DIR /var/simplesamlphp/config
Alias /simplesaml /var/simplesamlphp/www
<Directory /var/simplesamlphp/www>
<IfModule !mod_authz_core.c>
# For Apache 2.2:
Order allow,deny
Allow from all
</IfModule>
<IfModule mod_authz_core.c>
# For Apache 2.4:
Require all granted
</IfModule>
</Directory>
</VirtualHost>
第三,我将此行添加到/etc/hosts
:
127.0.0.1 simplesamlphp
四、我跑了:
sudo a2enmod rewrite
sudo a2ensite simplesamlphp.conf
sudo service apache2 restart
问题:访问http://simplesamlphp/simplesaml
给The requested URL /simplesaml was not found on this server
和以下出现在/var/log/apache2/error.log
:
AH00128: File does not exist: /var/www/html/simplesaml
我做错了什么?
顺便说一句,我正在遵循这些说明。实际上,我不确定为什么需要 DocumentRoot,尽管所有 Web 内容都在/var/simplesamlphp/www
.
当我从命令行运行 Nautilus 时,它会成功启动,但会出现在终端中:
Nautilus-Share-Message: Called "net usershare info" but it failed: 'net usershare' returned error 255: mkdir failed on directory /var/run/samba/msg.lock: Permission denied
net usershare: cannot open usershare directory /var/lib/samba/usershares. Error No such file or directory
Please ask your system administrator to enable user sharing.
我真的应该要求我的系统管理员启用用户共享吗?
我的管理员是我自己,我不使用 Samba。
此消息是否表明我的 Ubuntu 存在更大问题?
如果没有,我该如何防止它出现?(Nautilus 是由我正在 beta 测试但无法修改的程序启动的,目前的问题使该程序的错误在终端中不太明显)
我正在尝试运行一个使用 pyaudio 的 Python 程序:
python-pyaudio
ImportError: No module named 'pyaudio'
我究竟做错了什么?
$ sudo apt-get install python-pyaudio
[sudo] password for nico:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Suggested packages:
python-pyaudio-doc
The following NEW packages will be installed:
python-pyaudio
0 upgraded, 1 newly installed, 0 to remove and 49 not upgraded.
Need to get 0 B/24.1 kB of archives.
After this operation, 109 kB of additional disk space will be used.
Selecting previously unselected package python-pyaudio.
(Reading database ... 336001 files and directories currently installed.)
Preparing to unpack .../python-pyaudio_0.2.8-1build2_amd64.deb ...
Unpacking python-pyaudio (0.2.8-1build2) ...
Setting up python-pyaudio (0.2.8-1build2) ...
$ ./runanki
Traceback (most recent call last):
File "./runanki", line 3, in <module>
import aqt
File "/home/nico/src/anki/aqt/__init__.py", line 4, in <module>
from anki import version as _version
File "/home/nico/src/anki/anki/__init__.py", line 13, in <module>
from anki.storage import Collection
File "/home/nico/src/anki/anki/storage.py", line 12, in <module>
from anki.collection import _Collection
File "/home/nico/src/anki/anki/collection.py", line 26, in <module>
from anki.sound import stripSounds
File "/home/nico/src/anki/anki/sound.py", line 207, in <module>
import pyaudio
ImportError: No module named 'pyaudio'
环境:
$ which python
/usr/bin/python
$ python --version
Python 2.7.11+
我刚刚安装了 Gnome,当我点击“活动”时,左侧会出现一个方便的栏,让我可以切换到其他应用程序。不幸的是,一旦我选择了一个应用程序,该栏就会隐藏。
如何使此栏始终可见?
在 Ubuntu 上输入日语曾经意味着ibus-mozc,但自 2015 年以来 ibus-mozc 的维护越来越少:
Ubuntu 15.10 应该开始使用 Fcitx 而不是 ibus 作为他们的默认输入法(输入法框架),这也是我犹豫花时间改进 ibus-mozc 的另一个原因
这个官方文档页面声称 Fcitx 已成为默认值:
推荐的输入法框架是 IBus 和 Fcitx。后者是 Ubuntu 中用于中文、日文、韩文和越南文的默认框架。
这个说法是有争议的,但即使不是默认的,现在从 2015.10 升级到 2016.04 后 ibus-mozc 出现了一个问题,使我无法使用它,所以我想切换到 fcitx-mozc。
问题:如何将 Ubuntu 2016.04 从 ibus-mozc 切换到 fcitx-mozc?
我看到了一个fcitx-mozc 16.04 包,但我想除了安装包之外还有更多工作要做?推荐的程序是什么?
ffmpeg 3.0 于 2 月发布,它解决了一个重要的错误,所以我想使用它。
有没有什么简单的方法可以在 Ubuntu Wily 上安装 ffmpeg,例如 PPA?
我尝试了什么:
VirtualBox 突然开始拒绝启动现有的虚拟机,日志中显示如下:
00:00:03.946244 HDA: Reset
00:00:03.946359 AssertLogRel /mnt/tinderbox/extpacks-5.0/src/VBox/Devices/USB/DevEHCI.cpp(4955) int ehciR3Construct(PDMDEVINS*, int, CFGMNODE*): PDM_VERSION_ARE_COMPATIBLE((pDevIns)->pHlpR3->u32Version, PDM_DEVHLPR3_VERSION)
00:00:03.946378 DevHlp=0xffe700f1 mine=0xffe700e1
00:00:03.946407 PDM: Failed to construct 'usb-ehci'/0! VERR_PDM_DEVHLPR3_VERSION_MISMATCH (-2871) - The device helper structure version has changed.
00:00:03.946421 If you have upgraded VirtualBox recently, please make sure you have terminated all VMs and upgraded any extension packs. If this error persists, try re-installing VirtualBox.
00:00:04.037170 NAT: zone(nm:mbuf_cluster, used:0)
00:00:04.037303 NAT: zone(nm:mbuf_packet, used:0)
00:00:04.037317 NAT: zone(nm:mbuf, used:0)
00:00:04.037328 NAT: zone(nm:mbuf_jumbo_pagesize, used:0)
00:00:04.037422 NAT: zone(nm:mbuf_jumbo_9k, used:0)
00:00:04.037488 NAT: zone(nm:mbuf_jumbo_16k, used:0)
00:00:04.037530 NAT: zone(nm:mbuf_ext_refcnt, used:0)
00:00:04.039388 VMSetError: /build/virtualbox-JETMa8/virtualbox-5.0.14-dfsg/src/VBox/VMM/VMMR3/VM.cpp(365) int VMR3Create(uint32_t, PCVMM2USERMETHODS, PFNVMATERROR, void*, PFNCFGMCONSTRUCTOR, void*, VM**, UVM**); rc=VERR_PDM_DEVHLPR3_VERSION_MISMATCH
00:00:04.039394 VMSetError: The device helper structure version has changed.
00:00:04.039394 If you have upgraded VirtualBox recently, please make sure you have terminated all VMs and upgraded any extension packs. If this error persists, try re-installing VirtualBox.
00:00:04.039582 ERROR [COM]: aRC=NS_ERROR_FAILURE (0x80004005) aIID={872da645-4a9b-1727-bee2-5585105b9eed} aComponent={ConsoleWrap} aText={The device helper structure version has changed.
00:00:04.039587 If you have upgraded VirtualBox recently, please make sure you have terminated all VMs and upgraded any extension packs. If this error persists, try re-installing VirtualBox. (VERR_PDM_DEVHLPR3_VERSION_MISMATCH)}, preserve=false aResultDetail=0
00:00:04.116659 Console: Machine state changed to 'PoweredOff'
00:00:04.338867 Power up failed (vrc=VERR_PDM_DEVHLPR3_VERSION_MISMATCH, rc=NS_ERROR_FAILURE (0X80004005))
00:00:04.349471 GUI: UIMachineViewNormal::resendSizeHint: Restoring guest size-hint for screen 0 to 2789x1563
00:00:04.349542 ERROR [COM]: aRC=E_ACCESSDENIED (0x80070005) aIID={7303a66d-433b-25a4-f9a8-fcadf87e0c2a} aComponent={DisplayWrap} aText={The console is not powered up}, preserve=false aResultDetail=0
如何解决问题?
我想运行托管在Cabal上的这个程序,Cabal是 Haskell 应用程序的官方存储库。
首先我安装了 Cabal:
sudo apt-get install cabal-install
cabal update
其次,我安装了程序本身:
$ cabal install clanki
Resolving dependencies...
Downloading safe-0.3.9...
Downloading strict-0.3.2...
Configuring strict-0.3.2...
Configuring safe-0.3.9...
Building safe-0.3.9...
Building strict-0.3.2...
Installed strict-0.3.2
Installed safe-0.3.9
Downloading clanki-1.2.6...
Configuring clanki-1.2.6...
Building clanki-1.2.6...
Installed clanki-1.2.6
第三,我尝试运行程序:
$ clanki --list
clanki: command not found
尽管使用了推荐的安装程序,但为什么找不到程序?
youtube-dl
告诉我升级,所以我尝试了他们网站上给出的命令,但它导致一些输出听起来好像没有升级任何东西,尽管升级可用:
$ sudo pip install -U youtube-dl
Downloading/unpacking youtube-dl from https://pypi.python.org/packages/2.7/y/youtube_dl/youtube_dl-2016.02.05.1-py2.py3-none-any.whl#md5=2effdf3d1f12908c1d3fb27ab0035343
Downloading youtube_dl-2016.02.05.1-py2.py3-none-any.whl (1.2MB): 1.2MB downloaded
Installing collected packages: youtube-dl
Found existing installation: youtube-dl 2016.1.15
Can't uninstall 'youtube-dl'. No files were found to uninstall.
Successfully installed youtube-dl
Cleaning up...
如何解决这个问题并真正获得最新版本?
我可以从命令行轻松地在特定目录上启动 Nautilus:
nautilus /home/nico/Documents
但我希望 Nautilus 窗口最大化。
如何编写命令行?
nautilus
好像不认识--maximized
也不认识--fullscreen
。我不情愿地尝试--geometry 1500x1500
了它,它似乎确实有任何效果。