Installation guide
curl "https://awscli.amazonaws.com/awscli-exe-linux-aarch64.zip" -o "awscliv2.zip"
unzip awscliv2.zip
sudo ./aws/install --bin-dir /usr/local/bin --install-dir /usr/local/aws-cli --update
- Verification of the succesful installation
aws --version
- Create a new AWS IAM user: Add users -> User name -> Select AWS credential type -> Access key - Programmatic access -> Attach existing policies directly -> AdministratorAccess -> Default -> Create User -> Success -> Copy Access key ID & Secret access key
aws configure and fill in Access key ID and Secret access key, together with 'Default region name', 'Default output format'(None)
- Testing with creating a new AWS s3 bucket
aws s3 mb "s3://a-bucket-just-for-testing-purpose"