0
0
AWScloud~10 mins

Installing AWS CLI - Interactive Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the command to install AWS CLI on a Linux system using the package manager.

AWS
sudo [1] install awscli
Drag options to blanks, or click blank then click option'
Adocker
Bpip
Cnpm
Dapt-get
Attempts:
3 left
💡 Hint
Common Mistakes
Using pip instead of apt-get for system package installation
Using npm which is for Node.js packages
Using docker which is unrelated here
2fill in blank
medium

Complete the command to verify the AWS CLI version after installation.

AWS
aws --[1]
Drag options to blanks, or click blank then click option'
Acheck
Bconfigure
Cversion
Dhelp
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'check' which is not a valid AWS CLI command
Using 'configure' which is for setting up credentials
Using 'help' which shows help info, not version
3fill in blank
hard

Fix the error in the command to install AWS CLI using pip.

AWS
pip3 [1] awscli --upgrade --user
Drag options to blanks, or click blank then click option'
Aremove
Binstall
Cupdate
Ddownload
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'remove' which deletes packages
Using 'update' which is not a pip command
Using 'download' which only downloads but does not install
4fill in blank
hard

Fill both blanks to complete the command that downloads and unzips the AWS CLI installer on Linux.

AWS
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.[1]" -o "awscliv2.[2]"
Drag options to blanks, or click blank then click option'
Azip
Btar
Cgz
Dexe
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'tar' or 'gz' which are different archive formats
Using 'exe' which is for Windows executables
5fill in blank
hard

Fill both blanks to complete the command that runs the AWS CLI installer and then verifies the installation.

AWS
./aws/install [1] && aws --[2]
Drag options to blanks, or click blank then click option'
A--update
Bversion
D--check
Attempts:
3 left
💡 Hint
Common Mistakes
Using '--check' which is not a valid installer option
Mixing up installer flags with version command