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.
echo "bash" >> /home/user/.profile echo "bash" >> /root/.profile
ln -s /etc/bashrc /root/.bash_profile ln -s /etc/bashrc /home/user/.bash_profile