I am trying to set ZSH as my default shell, however it keeps reverting back to bash.
I have tried this code:
sudo chsh -s $(which zsh)
I've also tried:
sudo chsh -s /bin/zsh
Also tried these commands without sudo. Any ideas on what else I need to do. When running ZSH from within bash it loads up and works fine but I'd like to set it as the default shell.
Just using
chsh
:without
sudo
should work. If you usesudo
it will change the shell not for your working user but for rootFinally, log out of your computer and log back in.
Troubleshooting:
dpkg -l zsh
grep $USER /etc/passwd
grep zsh /etc/shells
I found this on superuser forum
Open /etc/passwd:
Find the line with your username:
and replace bash with zsh:
Log out and log in back for the changes to take effect.
You may also do this:
open your bashrc file in your favourite editor
then add the line below top of the file
It will execute the command every time you load the terminal and run your zsh shell.
I had an issue with permissions to change shell under the current user but next helps me (you should set correct 'zsh' folder for your computer):
If zsh is not /bin/zsh then chsh won't work. On Ubuntu it is /usr/bin/zsh. so doing
chsh -s /usr/bin/zsh
orchsh -s `which zsh`
should work. Also need to re-login to desktop session.Strange, the "accepted" answer didn't work for me as I got
To solve this issue edit your /etc/passwd and make sure it points to the zsh location. (You can find this by running "which zsh") In my case my user called "webmaster" looked like this:
As well as chsh (or editing /etc/passwd, which does the same thing), you might need to edit the settings in your terminal emulator (Gnome terminal, Konsole, xfce4-terminal, etc). Your profile will probably have a login shell, which will be run when you open a new tab instead of the shell in /etc/passwd.
In Konqueror it's
Settings
|Edit Current Profile
|Command
.