linux – TAB Completon和mc问题

前端之家收集整理的这篇文章主要介绍了linux – TAB Completon和mc问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=8.10
DISTRIB_CODENAME=intrepid
DISTRIB_DESCRIPTION="Ubuntu 8.10"

这是服务器版本.

当我进入它时,我遇到以下问题:

问题1

选项卡完成表现得很奇怪到无法使用:

> cd ~/<press TAB>
-sh: <( compgen -d -- '/home/dmitriid/' ): No such file or directory

> vi ~/.<press TAB>
<( compgen -d -- '/home/dmitriid/.' ): No such file or directory
-sh: <( eval compgen -f -X '*.@(o|so|so.!(conf)|a|rpm|gif|GIF|jp?(e)g|
JP?(E)G|mp3|MP3|mp?(e)g|MPG|avi|AVI|asf|ASF|ogg|OGG|class|CLASS)' -- 
$(quote_readline $cur) ): No such file or directory

> nano ~/.<press TAB>
./              .bash_logout    .mc/            .viminfo
../             .bashrc         .MysqL_history  
.aptitude/      .erlang.cookie  .profile        
.bash_history   .gitconfig      .ssh/

有办法解决这个问题吗?

问题2

我用了很多mc.我经常使用Ctrl O来隐藏面板并在shell中工作.就我而言:

> Ctrl O隐藏面板
>任何按键都会使面板恢复正常

有没有办法解决这个问题?

谢谢!

@R_404_323@

好.事实证明,解决方案是愚蠢而简单的.关键是 – mc中没有交互式shell.

答案就在于:http://www.ibiblio.org/mc/FAQ

6.6 When I use Ctrl-O I don’t get a subshell. How do I fix this?

Only bash,tcsh and zsh can be used as subshell. Use one of those
shells as your default shell,and it will be used as subshell in GNU
Midnight Commander.

所以我决定改变shell:

> which bash
/bin/bash
> sudo chsh -s /bin/bash my_user_name
> grep ^my_user_name /etc/password
my_user_name:x:1002:1002::/home/my_user_name:/bin/bash

注意/ bin / bash在passwd文件的末尾.这意味着shell现在已经改变了.

退出后再登录 – 瞧,一切正常!

原文链接:https://www.f2er.com/linux/398445.html

猜你在找的Linux相关文章