132

I want to change my shell from the default bash shell to zsh on my Amazon EC2 instances. How do I go about doing it? Thanks!

Braiam
  • 4,777

6 Answers6

165

Try using the chsh command.

e.g.

chsh -s /bin/zsh

You can confirm the location of zsh by running whereis zsh, or alternatively simply run

chsh -s $(which zsh)

If you want to change the shell for a user account other than the one you're logged into, you'll need to run it as root, so to change john's shell, do:

sudo chsh -s $(which zsh) john

Note that you'll need to log out and log back in for the change to go into effect. If you're using Gnome or some other window manager, you'll need to completely log out of that session as well—simply closing and opening your terminal is insufficient.

Heptite
  • 20,411
29

Open /etc/passwd:

sudo vi /etc/passwd

Find the line with your username:

username:x:1634231:100:Your Name:/home/username:/bin/bash

and replace bash with zsh:

username:x:1634231:100:Your Name:/home/username:/bin/zsh

Log out and log in back for the changes to take effect.

21

I came here to just add more additional information. If you have troubles when install zsh in Amazon Linux AMI by Amazon, like when you run:

sudo chsh $(which zsh) : // chsh command not found

Then you should install util-linux-user:

sudo yum install util-linux-user

(by default Amazon Linux AMI only has lchsh, but I can not figure how it work).

Then run the following command, it should work:

sudo chsh -s $(which zsh) $(whoami)
Chau Giang
  • 335
  • 4
  • 9
5

On Ubuntu, inside GNOME terminal, making changes via chsh won't have the expected effect...

To get over this problem, do this:

  • Right click in terminal
  • Profiles -> Profile Preferences
  • Under "Title and Command" tab, tick "Run a custom command instead of my shell" and provide the path to zsh executable.
  • Restart Terminal.

Peace.

P.S. Don't have 10 reputation to post images, so all texty instructions. :)

Ben
  • 51
0

one line

sudo chsh -s $(which zsh) $(whoami)

Extra Info: after that you'll probably want to do this ones

git clone https://github.com/zdharma/fast-syntax-highlighting.git \
  ~/.oh-my-zsh/custom/plugins/fast-syntax-highlighting

git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions

nano ~/.zshrc 

find plugins=(git) Append zsh-autosuggestions & zsh-syntax-highlighting to plugins() like this

plugins=(git zsh-autosuggestions fast-syntax-highlighting)

source ~/.zshrc
OWADVL
  • 187
0

I had an ubuntu 18.04 EC2 instance. But, when i tried doing:

ubuntu@ip-xxx:~$ chsh -s /bin/zsh         
Password: 
chsh: PAM: Authentication failure

I got a password prompt, which failed with auth error because quite frankly I'm not sure of what to put there for sudo user.

So, I tried adding sudo and command didn't give any error. But, when i ssh'ed later, I still got BASH as default SHELL.

What worked for me was the below command:

ubuntu@ip-xxx:~$ sudo chsh -s $(which zsh) $(whoami)

This changed the default shell for current user and it stayed that way for each time I ssh'ed into the machine.

Success! :)

Deepak
  • 101