Skip to content

Instantly share code, notes, and snippets.

@mmansoor
Last active December 4, 2018 16:43
Show Gist options
  • Save mmansoor/9f731bec0623357d99a2392e4f0504be to your computer and use it in GitHub Desktop.
Save mmansoor/9f731bec0623357d99a2392e4f0504be to your computer and use it in GitHub Desktop.
Install zsh and oh-my-zsh on Amazon Linux ARM ARM64
# 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