终端自动完成功能无法正常运行
如果我apt-g在打完之后开始输入命令tab,shell会完成命令到apt-get,但是对于命令的第二部分install,如果我输入某些字符,例如insta打tab,则不会完成它install。 另一个例子:输入后,sudo击打tab不会完成任何操作。例如:sudo apt-ge[ tab],什么也没有。 我使用mini iso(40MB网络安装程序)安装了Ubuntu,所以也许我错过了一个配置! 我已将此代码添加到我的代码中,.bashrc但仍然无法正常工作: if ! shopt -oq posix; then if [ -f /usr/share/bash-completion/bash_completion ]; then . /usr/share/bash-completion/bash_completion elif [ -f /etc/bash_completion ]; then . /etc/bash_completion fi fi 我还检查了的许可,.bashrc它是-rw-r--r--。 我还提供了将.bashrc更改source .bashrc应用到新环境后的更改,但仍然没有效果。 我使用xfce4-terminal它,所以我认为可能是终端而不是bash。 但是编辑: ~/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml 并更改: <property name="&lt;Super&gt;Tab" type="string" value="switch_window_key"/> 至: <property name="&lt;Super&gt;Tab" type="string" value="empty"/> 也没有任何区别。