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!
|
feedback
|
|
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 | |||||||
feedback
|