Building Cloud Expertise with centron - Our Tutorials

Whether you are a beginner or an experienced professional, our practical tutorials provide you with the knowledge you need to make the most of our cloud services.

Using Linux command on a regular basis? Today we’ll look at 50 Linux commands you must know!

The commands listed below are the Top 50 Linux Commands You must Know. Let’s get right into it!

Deploy your frontend applications from GitHub using DigitalOcean App Platform. Let DigitalOcean focus on scaling your app.

Top 50 Linux Commands You Must Know as a Regular User

  • ls – The most frequently used command in Linux to list directories
  • pwd – Print working directory command in Linux
  • cd – Linux command to navigate through directories
  • mkdir – Command used to create directories in Linux
  • mv – Move or rename files in Linux
  • cp – Similar usage as mv but for copying files in Linux
  • rm – Delete files or directories
  • touch – Create blank/empty files
  • ln – Create symbolic links (shortcuts) to other files
  • cat – Display file contents on the terminal
  • clear – Clear the terminal display
  • echo – Print any text that follows the command
  • less – Linux command to display paged outputs in the terminal
  • man – Access manual pages for all Linux commands
  • uname – Linux command to get basic information about the OS
  • whoami – Get the active username
  • tar – Command to extract and compress files in Linux
  • grep – Search for a string within an output
  • head – Return the specified number of lines from the top
  • tail – Return the specified number of lines from the bottom
  • diff – Find the difference between two files
  • cmp – Allows you to check if two files are identical
  • comm – Combines the functionality of diff and cmp
  • sort – Linux command to sort the content of a file while outputting
  • export – Export environment variables in Linux
  • zip – Zip files in Linux
  • unzip – Unzip files in Linux
  • ssh – Secure Shell command in Linux
  • service – Linux command to start and stop services
  • ps – Display active processes
  • kill and killall – Kill active processes by process ID or name
  • df – Display disk filesystem information
  • mount – Mount file systems in Linux
  • chmod – Command to change file permissions
  • chown – Command for granting ownership of files or folders
  • ifconfig – Display network interfaces and IP addresses
  • traceroute – Trace all the network hops to reach the destination
  • wget – Direct download files from the internet
  • ufw – Firewall command
  • iptables – Base firewall for all other firewall utilities to interface with
  • apt, pacman, yum, rpm – Package managers depending on the distro
  • sudo – Command to escalate privileges in Linux
  • cal – View a command-line calendar
  • alias – Create custom shortcuts for your regularly used commands
  • dd – Majorly used for creating bootable USB sticks
  • whereis – Locate the binary, source, and manual pages for a command
  • whatis – Find what a command is used for
  • top – View active processes live with their system usage
  • useradd and usermod – Add new user or change existing users data
  • passwd – Create or update passwords for existing users

Now let’s dive a little deeper into each of these commands and understand them in more detail. We already have a lot of existing articles for each of those individual commands. For your convenience, we’ll add links to all the existing articles, and continue to update the article as new topics are covered.

The ls Command in Linux

The ls command is used to list files and directories in the current working directory. This is going to be one of the most frequently used Linux commands you must know of.

Ls Command Default

Using the command by itself without any arguments will give us an output with all the files and directories in the directory. The command offers a lot of flexibility in terms of displaying the data in the output.

The pwd Command in Linux

The pwd command allows you to print the current working directory on your terminal. It’s a very basic command and solves its purpose very well.

Pwd Default Output

Now, your terminal prompt should usually have the complete directory anyway. But in case it doesn’t, this can be a quick command to see the directory that you’re in. Another application of this command is when creating scripts where this command can allow us to find the directory where the script has been saved.

The cd Command in Linux

While working within the terminal, moving around within directories is pretty much a necessity. The cd command is one of the important Linux commands you must know and it will help you to navigate through directories. Just type cd followed by directory as shown below.

root@ubuntu:~# cd <directory path>


Cd Command Default

As you can see in the above command, I simply typed cd /etc/ to get into the /etc directory. We used the pwd command to print the current working directory.

The mkdir Command in Linux

The mkdir command allows you to create directories from within the terminal. The default syntax is mkdir followed by the directory name.

root@ubuntu:~# mkdir <folder name>


Mkdir Default

As you can see above , we created the JournalDev directory with just this simple command.

The grep Command in Linux

If you wish to search for a specific string within an output, the grep command comes into the picture. We can pipe (|) the output to the grep command and extract the required string.

root@ubuntu:~# <Any command with output> | grep "<string to find>"


Grep Command Example

This was a simple demonstration of the command. >

The mkdir Command in Linux

The mkdir command allows you to create directories from within the terminal. The default syntax is mkdir followed by the directory name.

root@ubuntu:~# mkdir <folder name>


Mkdir Default

As you can see in the above screenshot, we created the JournalDev directory with just this simple command.

The cp and mv Commands

The cp and mv commands are equivalent to the copy-paste and cut-paste in Windows. But since Linux doesn’t really have a command for renaming files, we also make use of the mv command to rename files and folders.

root@ubuntu:~# cp <source> <destination>


Cp Command Default

In the above command, we created a copy of the file named Sample. Let’s see what happens if we use the mv command in the same manner. For this demonstration, I’ll delete the Sample-Copy file.

root@ubuntu:~# mv <source> <destination>


Mv Command Linux commands you should know

In the above case, since we were moving the file within the same directory, it acted as rename. The file name is now changed.

The rm Command in Linux

In the previous section, we deleted the Sample-Copy file. The rm command is used to delete files and folders and is one of the important Linux commands you must know.

root@ubuntu:~# rm <file name>


root@ubuntu:~# rm -r <folder/directory name>


Rm Default

To delete a directory, you have to add the -r argument to it. Without the -r argument, rm command won’t delete directories.

The touch Command in Linux

To create a new file, the touch command will be used. The touch keyword followed by the file name will create a file in the current directory.

root@ubuntu:~# touch <file name>


Touch Command – Linux commands you should know

The ln Command in Linux

To create a link to another file, we use the ln command. This is one of the important Linux commands that you should know if you’re planning to work as a Linux administrator.

root@ubuntu:~# ln -s <source path> <link name>


Symbolic Link Default

The basic syntax involves using the -s parameter so we can create a symbolic link or soft link.

The cat, echo, and less Commands

When you want to output the contents of a file, or print anything to the terminal output, we make use of the cat or echo commands. Let’s see their basic usage. I’ve added some text to our New-File that we created earlier.

root@ubuntu:~# cat <file name>


root@ubuntu:~# echo <Text to print on terminal>


Cat And Echo Commands

As you can see in the above example, the cat command when used on our “New-File”, prints the contents of the file. At the same time, when we use echo command, it simply prints whatever follows after the command.

The less command is used when the output printed by any command is larger than the screen space and needs scrolling. The less command allows use to break down the output and scroll through it with the use of the enter or space keys.

The simple way to do this is with the use of the pipe operator (|).

root@ubuntu:~# cat /boot/grub/grub.cfg | less

The man Command in Linux

The man command is a very useful Linux command you must know. When working with Linux, the packages that we download can have a lot of functionality. Knowing it all is impossible.

The man pages offer a really efficient way to know the functionality of pretty much all the packages that you can download using the package managers in your Linux distro.

root@ubuntu:~# man <command>

The uname and whoami Commands

The uname and whoami commands allow you to know some basic information which comes really handy when you work on multiple systems. In general, if you’re working with a single computer, you won’t really need it as often as someone who is a network administrator.

Let’s see the output of both the commands and the way we can use these.


Uname And Whoami Commands Linux commands you should know

The parameter -a which I’ve supplied to uname, stands for “all”. This prints out the complete information. If the parameter is not added, all you will get as the output is “Linux”.

The tar, zip, and unzip Commands

The tar command in Linux is used to create and extract archived files in Linux. We can extract multiple different archive files using the tar command.

To create an archive, we use the -c parameter and to extract an archive, we use the -x parameter. Let’s see it working.

#Compress

root@ubuntu:~# tar -cvf <archive name> <files separated by space>


#Extract

root@ubuntu:~# tar -xvf <archive name>


Tar Basic Usage Linux commands you should know

In the first line, we created an archive named Compress.tar with the New-File and New-File-Link. In the next command, we have extracted those files from the archive.

Now coming to the zip and unzip commands. Both these commands are very straightforward. You can use them without any parameters and they’ll work as intended. Let’s see an example below.

root@ubuntu:~# zip <archive name> <file names separated by space>


root@ubuntu:~# unzip <archive name>


Zip Unzip Commands

Since we already have those files in the same directory, the unzip command prompts us before overwriting those files.

The ssh Command in Linux

The ssh command allows us to connect to an external machine on the network with the use of the ssh protocol. The basic syntax of the ssh command is:

root@ubuntu:~ -->> ssh username@hostname

The service Command in Linux

The service command in Linux is used for starting and stopping different services within the operating system. The basic syntax of the command is as below.

root@ubuntu:~ -->> service ssh status


root@ubuntu:~ -->> service ssh stop


root@ubuntu:~ -->> service ssh start

Service Command

As you can see in the image, the ssh server is running on our system.

The ps, kill, and killall Commands

While we’re on the topic of processes, let’s see how we can find active processes and kill them. To find the running processes, we can simply type ps in the terminal prompt and get the list of running processes.


root@ubuntu:~ -->> kill <process ID>


root@ubuntu:~ -->> killall <process name>

For demonstration purposes, I’m creating a shell script with an infinite loop and will run it in the background.

With the use of the & symbol, I can pass a process into the background. As you can see, a new bash process with PID 14490 is created.

Ps Command Linux commands you should know

Now, to kill a process with the kill command, you can type kill followed by the PID of the process.

Kill Command linux commands you should know

But if you do not know the process ID and just want to kill the process with the name, you can make use of the killall command.

Killall Command linux commands you should know

You will notice that PID 14490 stayed active. That is because both the times, I killed the sleep process.

The df and mount Commands

When working with Linux, the df and mount commands are very efficient utilities to mount filesystems and get details of the file system.

When I say mount, it means that we’ll connect the device to a folder so we can access the files from our filesystem. The default syntax to mount a filesystem is below:

root@ubuntu:~ -->> mount /dev/cdrom /mnt


In the above case, /dev/cdrom is the device that needs to be mounted. Usually, a mountable device is found inside the /dev folder. /mnt is the destination folder to mount the device to. You can change it to any folder you want but I’ve used /mnt as it’s pretty much a system default folder for mounting devices.

To see the mounted devices and get more information about them, we make use of the df command. Just typing df will give us the data in bytes which is not readable. So we’ll use the -h parameter to make the data human-readable.

Df Command linux commands you should know

The chmod and chown Commands

The chmod and chown commands give us the functionality to change the file permissions and file ownership are the most important Linux commands you must know.

The main difference between the functions of the two commands is that the chmod command allows changing file permissions, while chown allows us to change the file owners.

The default syntax for both the commands is chmod <parameter> filename and chown user:group filename

root@ubuntu:~ -->> chmod +x loop.sh


root@ubuntu:~ -->> chmod root:root loop.sh

Chmod Command linux commands you should know

In the above example, we’re adding executable permissions to the loop.sh file with the chmod command. Apart from that, with the chown command, we’ve made it accessible only by root user and users within the root group.

Chown Command linux commands you should know

As you will notice, the root root part is now changed to www-data which is the new user who has full file ownership.

The ifconfig and traceroute Commands

Moving on to the networking section in Linux, we come across the ifconfig and traceroute commands which will be frequently used if you manage a network.

The ifconfig command will give you the list of all the network interfaces along with the IP addresses, MAC addresses and other information about the interface.

root@ubuntu:~ -->> ifconfig

There are multiple parameters that can be used but we’ll work with the basic command here.

Ifconfig Command linux commands you should know

When working with traceroute, you can simply specify the IP address, the hostname or the domain name of the endpoint.

root@ubuntu:~ -->> traceroute <destination address>


Traceroute Command linux commands to know

Now obviously, localhost is just one hop (which is the network interface itself). You can try this same command with any other domain name or IP address to see all the routers that your data packets pass through to reach the destination.

The wget Command in Linux

If you want to download a file from within the terminal, the wget command is one of the handiest command-line utilities available. This will be one of the important Linux commands you should know when working with source files.

When you specify the link for download, it has to directly be a link to the file. If the file cannot be accessed by the wget command, it will simply download the webpage in HTML format instead of the actual file that you wanted.

Let’s try an example. The basic syntax of the wget command is:

root@ubuntu:~ -->> wget <link to file>


OR

root@ubuntu:~ -->> wget -c <link to file>

The -c argument allows us to resume an interrupted download.

The ufw and iptables Commands

UFW and IPTables are firewall interfaces for the Linux Kernel’s netfilter firewall. IPTables directly passes firewall rules to netfilter while UFW configures the rules in IPTables which then sends those rules to netfilter.

Why do we need UFW when we have IPTables? Because IPTables is pretty difficult for a newbie. UFW makes things extremely easy. See the below example where we are trying to allow the port 80 for our webserver.

root@ubuntu:~# iptables -A INPUT -p tcp -m tcp --dport 80 -j ACCEPT


root@ubuntu:~# ufw allow 80


I’m sure you now know why UFW was created! Look at how easy the syntax becomes. Both these firewalls are very comprehensive and can allow you to create any kind of configuration required for your network. Learn at least the basics of UFW or IPTables firewall as these are the Linux commands you must know.

Package Managers in Linux

Different distros of Linux make use of different package managers. Since we’re working on a Ubuntu server, we have the apt package manager. But for someone working on a Fedora, Red Hat, Arch, or Centos machine, the package manager will be different.

Debian and Debian-based distros – apt install <package name>

Arch and Arch-based distros – pacman -S <package name>

Red Hat and Red Hat-based distros – yum install <package name>

Fedora and CentOS – yum install <package>

Getting yourself well versed with the package manager of your distribution will make things much easier for you in the long run. So even if you have a GUI based package management tool installed, try an make use of the CLI based tool before you move on to the GUI utility. Add these to your list of Linux commands you must know.

The sudo Command in Linux

“With great power, comes great responsibility”

This is the quote that’s displayed when a sudo enabled user(sudoer) first makes use of the sudo command to escalate privileges. This command is equivalent to having logged in as root (based on what permissions you have as a sudoer).

non-root-user@ubuntu:~# sudo <command you want to run>


Password:

Just add the word sudo before any command that you need to run with escalated privileges and that’s it. It’s very simple to use, but can also be an added security risk if a malicious user gains access to a sudoer.

The cal Command in Linux

Ever wanted to view the calendar in the terminal? Me neither! But there apparently are people who wanted it to happen and well here it is.

The cal command displays a well-presented calendar on the terminal. Just enter the word cal on your terminal prompt.


root@ubuntu:~# cal May 2019

Cal Command Output

Even though I don’t need it, it’s a really cool addition! I’m sure there are people who are terminal fans and this is a really amazing option for them.

The alias Command

Do you have some commands that you run very frequently while using the terminal? It could be rm -r or ls -l, or it could be something longer like tar -xvzf. This is one of the productivity-boosting Linux commands you must know.

If you know a command that you run very often, it’s time to create an alias. What’s an alias? In simple terms, it’s another name for a command that you’ve defined.

root@ubuntu:~# alias lsl="ls -l"


OR

root@ubuntu:~# alias rmd="rm -r"


Now every time you enter lsl or rmd in the terminal, you’ll receive the output that you’d have received if you had used the full commands.

The examples here are for really small commands that you can still type by hand every time. But in some situations where a command has too many arguments that you need to type, it’s best to create a shorthand version of the same.

The dd Command in Linux

This command was created to convert and copy files from multiple file system formats. In the current day, the command is simply used to create bootable USB for Linux but there still are some things important you can do with the command.

For example, if I wanted to back up the entire hard drive as is to another drive, I’ll make use of the dd command.

root@ubuntu:~# dd if = /dev/sdb of = /dev/sda


The if and of arguments stand for input file and output file.

The whereis and whatis Commands

The names of the commands make it very clear as to their functionality. But let’s demonstrate their functionality to make things more clear.

The whereis command will output the exact location of any command that you type in after the whereis command.

root@ubuntu:~# whereis sudo


sudo: /usr/bin/sudo /usr/lib/sudo /usr/share/man/man8/sudo.8.gz


The whatis command gives us an explanation of what a command actually is. Similar to the whereis command, you’ll receive the information for any command that you type after the whatis command.

root@ubuntu:~# whatis sudo


sudo (8) – execute a command as another user

The top Command in Linux

A few sections earlier, we talked about the ps command. You observed that the ps command will output the active processes and end itself.

The top command is like a CLI version of the task manager in Windows. You get a live view of the processes and all the information accompanying those processes like memory usage, CPU usage, etc.

To get the top command, all you need to do is type the word top in your terminal.

Top Command Output Linux commands you should know

The useradd and usermod Commands

The useradd or adduser commands are the exact same commands where adduser is just a symbolic link to the useradd command. This command allows us to create a new user in Linux.

root@ubuntu:~# useradd JournalDev -d /home/JD


The above command will create a new user named JournalDev with the home directory as /home/JD.

The usermod command, on the other hand, is used to modify existing users. You can modify any value of the user including the groups, the permissions, etc.

For example, if you want to add more groups to the user, you can type in:

root@ubuntu:~# usermod JournalDev -a -G sudo, audio, mysql

The passwd Command in Linux

Now that you know how to create new users, let’s also set the password for them. The passwd command lets you set the password for your own account, or if you have the permissions, set the password for other accounts.

The command usage is pretty simple:

New password:

Passwd Command

If you add the username after passwd, you can set passwords for other users. Enter the new password twice and you’re done. That’s it! You will have a new password set for the user!

Final Note

This happened to be a very long article but I’m sure will be something you can refer to whenever required. As we add more articles to JournalDev, we will continue to add links to those articles here.

We hope this article was useful to you. If you have any questions, feel free to comment down below.

Ready to Elevate Your Linux Skills?

Dive into the world of Linux with confidence! As a leading cloud provider, we offer an exclusive trial for you to explore and enhance your Linux capabilities. Embrace the power of Linux and discover how our cloud solutions can streamline your projects. Don't wait – start your free trial today and unlock the full potential of Linux!

Try for free!