Skip to content

Instantly share code, notes, and snippets.

@MuttakinHasib
Last active June 8, 2022 21:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MuttakinHasib/ce428345eb9a5c0592d826e776a9a529 to your computer and use it in GitHub Desktop.
Save MuttakinHasib/ce428345eb9a5c0592d826e776a9a529 to your computer and use it in GitHub Desktop.
AWS Linux Guide

Update AWS Linux

sudo yum update

Perform a quick update on your instance:

sudo yum update -y

Root User

sudo su

Fix warning: setlocale: LC_CTYPE: cannot change locale (UTF-8): No such file or directory

vi /etc/environment

add these lines...

LANG=en_US.utf-8
LC_ALL=en_US.utf-8

Install git in your EC2 instance

sudo yum install git -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment