歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> SHELL編程

更改Ubuntu 12.04默認的shell

Ubuntu 12.04默認的shell是dash。

www.linuxidc.com @linu:~$ ls -ls /bin/sh 

0 lrwxrwxrwx 1 root root 4 Oct 18 20:40 /bin/sh -> dash

但我們常用的是bash. 更改命令如下:

www.linuxidc.com @linu:~$ sudo unlink /bin/sh 

www.linuxidc.com @linu:~$ ls -ls /bin/sh 

ls: cannot access /bin/sh: No such file or directory 

www.linuxidc.com @linu:~$ sudo ln -s /bin/bash /bin/sh 

更改後:

www.linuxidc.com @linu:~$ ls -ls /bin/sh 

0 lrwxrwxrwx 1 root root 9 Oct 18 22:08 /bin/sh -> /bin/bash 

Copyright © Linux教程網 All Rights Reserved