Linux

The uptime Command in Linux

As a Linux user, or as a server administrator, you need to regularly understand how long your servers have been up and running to understand their patch levels. What that means is that if a major update was recently rolled out, but a server has been up for a few weeks, you know that the […]

The uptime Command in Linux Read More ยป

The tail command in Linux

The tail command in Linux displays the last few lines/blocks of any file, the number of lines/blocks being dependent on the options passed when using the command. Also read: The uptime Command in Linux The Linux tail command default output When no options are provided, the tail command prints the last 10 lines for all

The tail command in Linux Read More ยป

Linux ifconfig command

NOTE: Before reading this article, I would like to inform you that the ifconfig command is outdated, and is not recommended anymore. The ip command is the current replacement for the ifconfig command. Even though this program may be outdated, you may be in a system where you may need this command, so I’ll start

Linux ifconfig command Read More ยป

The ‘touch’ command in Linux

The touch command in Linux is used to update timestamps on files, namely, the access and modification time for any file(s). This is basically ‘touching’ the file, and hence the name of the command. This command has different options through which we could modify certain timestamps for the files provided as arguments. 1. Using touch

The ‘touch’ command in Linux Read More ยป

Setting Hostname in Debian

There are multiple ways of setting hostname in Debian or Linux system. You can temporarily change the hostname, or permanently apply the changes to a system. Let’s go over these methods. Setting hostname temporarily Let’s start with the temporary and simple method. The hostname command in Debian allows you to set up the system hostname

Setting Hostname in Debian Read More ยป

The mv Command in Linux

The mv command in Linux allows you to move a file from one location to another. Also, we don’t really have a rename command in Linux. Instead, we move files from one name to another. This is facilitated by the “mv” command which stands for move. For basic usage, you will find it very straightforward

The mv Command in Linux Read More ยป