Linux Shell 按Tab鍵不能補全

來源:互聯網
上載者:User

標籤:使用   div   sp   問題   on   c   linux   ad   r   

今天碰到一個問題git 後面的參數用Tab鍵無法補全   例如git c_

在網上找了半天找到答案如下

今天在Linux上用useradd新增使用者的時候,發現使用新增的使用者登陸的時候,在Shell裡面不能使用Tab鍵補全命令,按上下鍵也不能切換曆史命令,出現亂碼的現象。Root使用者是OK的。

後面發現,在/etc/passwd裡面,新增的使用者用的Shell與root使用者的不一樣。

 Root用的是/bin/bash

 新增使用者預設用的是/bin/sh

 用ls -l /bin/sh發現

 /bin/sh -> /bin/dash

 dash與bash是不一樣的,把/bin/sh改成/bin/bash後, 

 

 

在我的ubuntu上運行 sudo gedit /etc/passwd  結果如下   也可以用env命令查看 shell=/bin/bash/

hailongzhou:x:1000:1000:hailongzhou,,,:/home/hailongzhou:/bin/bash
使用者的shell確實是bash 可是     /bin/sh -> /bin/dash

修改Ubuntu的/bin/sh的預設串連:終端輸入:[email protected]:~# cd /bin[email protected]:/bin# ls -l /bin/shlrwxrwxrwx 1 root root 4 2008-04-28 19:59 /bin/sh -> dash  //預設位dash[email protected]:/bin# ln -sf bash /bin/sh      //軟連結  -f表示強制[email protected]:/bin# ls -l /bin/sh

lrwxrwxrwx 1 root root 4 2008-05-01 22:51 /bin/sh -> bash  //現在位bash了

git 後面的參數可以用Tab鍵補齊了


bash 與dash的區別
bash - GNU Bourne-Again SHell
dash - Debian Almquist Shell
可以分別man bash  / man dash看一下。

那麼怎麼把sh改為指向bash呢?
最暴力的方法當然是直接把/bin/sh的軟連結改到bash中,
如:ln -s /bin/bash /bin/sh
但是,有優雅一些的方法,
sudo dpkg-reconfigure dash
出現菜單問你是否要dash的時候,選no就可以了。
再次檢查一下, ls /bin/sh -al 發現軟連結指向/bin/bash就可以了。

Linux Shell 按Tab鍵不能補全

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.