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!
Tell me more
×
Super User is a question and answer site for
computer enthusiasts and power users. It's 100% free, no registration required.
|
Try using the e.g. chsh -s /bin/zsh You can confirm the location of zsh by running 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 |
|||||||||
|