View Single Post
Posts: 839 | Thanked: 3,386 times | Joined on Mar 2009
#2
Originally Posted by burmashave View Post

To make bash your default shell:
Code:
echo "bash" >> /home/user/.profile
echo "bash" >> /root/.profile
Note: I believe there are other ways of setting coreutils-gnu and BASH as default. The above works for me.
That works for me too, but I didn't like it, because then I must use 'exit;exit' to 'exit'.

So this is my way:
Code:
ln -s /etc/bashrc /root/.bash_profile
ln -s /etc/bashrc /home/user/.bash_profile
And change file /etc/passwd
-/bin/sh
+/bin/bash
For root and user.


And I prefer nano with -c (always show row number in bottom bar) and -x (hidden help-bar)