How to Set BASH to Default Shell in Ubuntu
I can highly recommend Linode installations. Easy, fully functional, optimized, ready to go, LAMP stack.
Type:
$ bashIf command not found error, install BASH:
# pkg_add -r -v bashNow find where BASH is installed:
$ which bashYou should see (Ubuntu):
/bin/bashNow change shell:
$ chsh -s /bin/bash user-nameuser-name is your User Name
You should see:
Password:Provide your login password
You should now see a BASH prompt:
user-name@host-name:~$user-name is your User Name, host-name is your Host Name
And now verify that shell is changed:
$ grep ^user-name /etc/passwdYou should see:
user-name:x:1000:1000::/home/user-name:/bin/bash
