Learn Important Linux
Commands Used In AWS
www.technogeekscs.com
Cat Command
www.technogeekscs.com
The cat command can
be used to display the
content of a file.
Synatx: $ cat {filename}
ls Command
www.technogeekscs.com
The ls command lists the
contents of a directory on
your system. It displays
information about each file
and directory in the
current working directory.
Synatx: $ ls [OPTIONS][FILES]
rm
www.technogeekscs.com
The command removes
files and directories from
your system. It’s used to
delete unwanted files and
folders.
Synatx: $ rm {filename}
sudo chmod
www.technogeekscs.com
The command sudo
chmod changes the
permissions of files and
directories.
Synatx: $ sudo chmod <permissions of
user,group,others> {filename}
mkdir
www.technogeekscs.com
The command mkdir
used to create a new
directory .
Synatx:$ mkdir [option] dir_name
rmdir
www.technogeekscs.com
The command
removes the directory
named by pathname.
Synatx:$ rmdir <flag> {directoryname}
The command sudo
yum update performs
all necessary updates
on your system.
sudo yum update
www.technogeekscs.com
Synatx: $ sudo yum update
Update Command
sudo yum -y install
www.technogeekscs.com
The command installs a
package on your Amazon
Linux AMI. It will download
the package file, verify the
signature, and install the
package if all goes well.
Synatx:$ sudo yum -y install
Found This Helpful ?
For More
If you'd like to see more
content like this,
leave a comment
www.technogeekscs.com

Basic Linux Commands Used In AWS