2. System Information Commands
These are some of the general-purpose system information commands that are important to know and easy to remember.
COMMAND | MEANING | EXAMPLE & SYNTAX |
---|---|---|
history | This command displays the list of all the typed commands in the current terminal session. | Syntax: $ history |
clear | Clears the terminal i.e. no previous command will be visible on the screen now. | Syntax: $ clear |
hostname | Shows the name of the system host. | Syntax: $ hostname |
hostid | Displays the id of the host of the system. | Syntax: $ hostid |
sudo | Allows a regular user to run the programs with the security privileges of a superuser or root. | Syntax: $ sudo |
apt-get | This command is used to install and add new packages. | Syntax: $ apt-get |
date | This command is used to show the current date and time. | Example: The command and its output are shown on the right. Syntax: |
cal | Shows the calendar of the current month. | Example: The command cal and its output is shown on the right. Syntax: |
whoami | This command displays the name with which you are logged in. | Example: The command is typed in and it shows the username with which the user has logged in. Syntax: |
whereis [options] fileName | This command is used to find the location of source/binary file of a command and manuals sections for a specified file in Linux System. This command is similar to the find command but this command is faster as it produces more accurate results by taking less time compared to the find command. There are again a number of options available. | Example: The command to locate apropos command in Linux System is given on the right. Syntax: |
3. File Permission Commands
There are 3 types of people who can use a file and each type has 3 types of access to the file. This is shown in the diagram given below:
The diagram shows that there are 3 types of people accessing a file and they are:
- User (u)
- Group (g)
- Others (o)
Also, the access that we want to give to each of them is of three types:
- Read (r)
- Write (w)
- Execute (x)
So, each of them can have 0 or more out of these 3 permissions. Now let us understand the Linux commands that help us give these permissions to the files.
One important thing to note here is that before these 9 slots of the user, group and others (read, write and execute permissions), there is also one another slot. This slot is for special files. For instance, if you something as drwxr--r--, here ‘d’ shows that it is a directory of which you are viewing the permissions. Further, rwx means that the user has all the three permissions where as r-- means that the group has only read permission and the write and execute permissions are not there with the group. The same is the case for others (another r--).
- The chmod Command:
Before we jump into the Linux file permission commands and see some examples, it is very important to understand this chmod command in detail first as understanding this command completely will clear the entire concept of file permission commands. The chmod command stands for “change-mode” which means that using this command, we can change the mode in which some user is able to access the file. This command is used to change the file permissions. The syntax can be either using symbols (characters) or numbers. We will see that in detail.
- Symbolic Method for granting permissions:
This is the first method of chmod command using which we can give permissions. The basic syntax is as follows:
chmod [ugoa…][-+=]perms…[,....] FILE….
Let us understand this syntax in detail.
The first set means the type of person to give access to. Here:
- u → Stands for User
- g → Stands for Group
- o → Stands for Others
- a → Stands for All the users i.e. instead of writing ugo, we can just write a.
If the user's flag is not included in the command i.e. we do not mention for which kind of people out of u, g and o, are we changing the permissions for, by default, it takes a i.e. all the users.
The second set is the set of operators. Let us see what they mean.
- - → removes the mentioned permission
- + → adds the mentioned permission
- = → Changes the current permission to the mentioned permission. IF no permission is mentioned after using the = operator, all the permissions from the mentioned class are removed.
The perms stand for permission and ‘,’ is used to separate different permissions. Let us now see the Linux commands using the symbolic notation of chmod.
COMMAND | MEANING | EXAMPLE & SYNTAX |
---|---|---|
ls -l fileName | This command is used to show the file permissions along with the owner and other details of the specified file. | Example: The file permissions along with the owner and other details is shown for the file file1.txt on the right. Syntax: |
r | This command represents the read permission. | Example: The command shown in the right adds the read permission to the o (other) class for the file file1.txt. Syntax: |
w | This command represents the write permission. | Example: This commands adds the write permission for a(all) i.e. user, group and others. Syntax: |
x | This command represents the execute permission. | Example: This command adds the execution permission for the user. Syntax: |
- Numerical Method for granting file permissions
There are numeric codes for each permission. They are as follows:
- r (read) = 4
- w (write) = 2
- x (execute) = 1
- No permissions = 0
The permissions number of a specific user class is represented by the sum of the values of all the permissions. For instance, if the user has read and executed permissions, but not the write permission, then the permissions number for the user will be read (4) + execute(1) = 5.
For instance, if we have to write a command to provide read and write permissions to the user, group and others, there can be many ways of doing so. Let us see one symbolic way:
- Symbolic Way
$ chmod ugo+rw file1.txt
We can write this in a numeric way as shown below:
- Numeric Way
$ chmod 666 file1.txt
Explanation: We have already studied that if we do not mention u/g/o then by default the permissions are applied to all. Also, read + write = 4 + 2 = 6. We have written 6 thrice because of applying the permissions to user, group and others. So, read and write permissions are applied to the user, group and others (666) for the file file1.txt.
4. Hardware Information Commands
Let us now see, some of the hardware information commands that give us the information about the hardware that we are using.
COMMAND | MEANING | EXAMPLE & SYNTAX |
---|---|---|
cpu-info | This command is used to display the information about your CPU. Note that this command is not available by default. It can be used after installation of the necessary package using sudo apt install cpuinfo. | Syntax: $ cpu-info |
free -h | This command is used to display the free and used memory. -h is used for converting the information (to be displayed) to human-readable form. | Syntax: $ free -h |
lsusb -tv | List all the USB connected devices. | Syntax: $ lsusb -tv |
cat /proc/meminfo | Gives the information about memory like total and occupied and so on. | Syntax: $ cat /proc/meminfo |
du | This command stands for disk usage and is used to estimate the space usage for a file or directory. | Example: The following command gives the size in human-readable form for the Desktop folder. Syntax: |
5. File and Directory Compression Commands
The files can be compressed and then extracted to save the storage. We see this happening many times in our daily lives that we have to compress some file to send it or we have to extract a downloaded file. There are several commands for file compression in Linux given below:
COMMAND | MEANING | EXAMPLE & SYNTAX |
---|---|---|
gzip fileName | This command is used to compress a file with gzip compression. | Example: The command to zip file1 using gzip compression is shown on the right. Syntax: |
gunzip fileName.gz | This command is used to unzip a file that has gzip compression. | Example: The command to unzip fileDemo.gz file with gz compression is shown on the right. Syntax: |
tar cf myDir.tar myDir | This command is used to create an uncompressed tar archive. | Example: The command to create an uncompressed tar archive for the directory demoDir is shown on the right. Syntax: |
tar cfz myDir.tar myDir | This command is used to create a tar archive with gzip compression. | Example: The command to create gzip tar archive for the directory demoDir is shown on the right. Syntax: |
tar xf file | This command is used to extract the contents of any type of tar archive. | Example: The command to extract the content of demoFile tar archive is shown on the right. Syntax: |
6. Environment Variable Commands
COMMAND | MEANING | EXAMPLE & SYNTAX |
---|---|---|
env | This command displays all the environment variables. | Syntax: $ env |
echo $Variable | This command displays the environment variable. | Example: The command at the right will display the INSTANCE environment variable. Syntax: |
unset | This command removes a variable. | Syntax: $ unset |
7. User Management Commands
COMMAND | MEANING | EXAMPLE & SYNTAX |
---|---|---|
sudo adduser username | This command is used to add a user. | Syntax: $ sudo adduser username |
sudo passwd -l ‘username’ | This command is used to change the password of a user. | Example: Command to change the password for user1 is shown Syntax: |
sudo userdel -r ‘username’ | This command is used to remove a newly created user. | Example: Command to delete the newly created user1 Syntax: |
sudo usermod -a -G GROUPNAME USERNAME | This command is used to add a user to a particular group. | Example: The command to add user2 to group1 is shown. Syntax: |
Sudo deluser USER GROUPNAME | This command is used to remove a user from a group. | Example: The command to delete user1 from group1 is shown. Syntax: |
finger | This command shows the information of all the users logged in. | Syntax: $ finger |
finger username | This command gives information about a particular user. | Example: The command to get information about the user1 is shown on the right. Syntax: |
8. Networking Commands
COMMAND | MEANING | SYNTAX |
---|---|---|
dir | This command is used to display files in the current directory of a remote computer. | Syntax: $ dir |
put file | This command is used to upload ‘file’ from local to the remote computer. | Syntax: $ put file |
get file | This file is used to download ‘file’ from remote to the local computer. | Syntax: $ get file |
quit | This command is used to log out. | Syntax: $ quit |
9. Process Commands
COMMAND | MEANING | EXAMPLE & SYNTAX |
---|---|---|
bg | This command is used to send a process to the background. | Example: The process with id 1 is sent to the background by providing its id to bg. Syntax: |
fg | This command is used to run a stopped process in the background. | Example: The process with id 1 is brought to the foreground with the help of this command. Syntax: |
top | This command is used to get the details of all active processes. | Syntax: $ top |
ps | This command is used to give the status of running for a user. | Syntax: $ ps |
ps PID | This command gives the status of a particular process. | Example: Displays the status of the process with id 12230. Syntax: |
pidof | This command is used to give the process ID of a particular process. | Syntax: $ pidof bash |
Additional Useful Resources:
Linux Commands MCQ
Which command in Linux can be used to create a file?
Which command in Linux is used to get the current date and time?
Which command in Linux is used to clear the terminal screen so that no previous command can be seen on the screen.
If we want to assign the read and execute permissions to all the classes, which of the following is NOT the correct command?
Which of the following commands is used to display all the files and directories in the current directory along with the hidden files?
Which Linux command is used to display all the previous commands in the current terminal session?
Which command in Linux is used to get the details of all the active processes?
How many slots are there in the file permissions diagram (including the special slot)?
Linux is better than windows mainly in its:
The command: sudo adduser username
, is a:
0 Comments