Quantcast
Channel: How do I change my default shell on a AWS instance? - Super User
Browsing latest articles
Browse All 7 View Live

Answer by Deepak for How do I change my default shell on a AWS instance?

I had an ubuntu 18.04 EC2 instance. But, when i tried doing:ubuntu@ip-xxx:~$ chsh -s /bin/zsh Password: chsh: PAM: Authentication failureI got a password prompt, which failed with auth error because...

View Article



Answer by OWADVL for How do I change my default shell on a AWS instance?

one linesudo chsh -s $(which zsh) $(whoami)Extra Info:after that you'll probably want to do this onesgit clone https://github.com/zdharma/fast-syntax-highlighting.git \...

View Article

Answer by Chau Giang for How do I change my default shell on a AWS instance?

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 foundThen you...

View Article

Answer by Ben for How do I change my default shell on a AWS instance?

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 terminalProfiles -> Profile Preferences Under "Title and...

View Article

Answer by Georgii Oleinikov for How do I change my default shell on a AWS...

Open /etc/passwd:sudo vi /etc/passwdFind the line with your username:username:x:1634231:100:Your Name:/home/username:/bin/bashand replace bash with zsh:username:x:1634231:100:Your...

View Article


Answer by user1931 for How do I change my default shell on a AWS instance?

Try using the chsh command.e.g.chsh -s /bin/zshYou can confirm the location of zsh by running whereis zsh, or alternatively simply runchsh -s $(which zsh)If you want to change the shell for a user...

View Article

How do I change my default shell on a AWS instance?

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!

View Article
Browsing latest articles
Browse All 7 View Live


Latest Images