Last active
December 4, 2018 16:43
-
-
Save mmansoor/9f731bec0623357d99a2392e4f0504be to your computer and use it in GitHub Desktop.
Install zsh and oh-my-zsh on Amazon Linux ARM ARM64
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Update yum | |
sudo yum update | |
# Install latest version of zsh | |
sudo yum install zsh | |
# Validate the installation of zsh | |
zsh --version | |
# Amazon Linux on ARM ARM64 does not have chsh installed, we will fallback | |
# the alternate approach using usermod. | |
sudo usermod -s /bin/zsh ec2-user | |
exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment