Purpose of /dev/sda on Linux (When to Use It with an Example)

When a Windows user encounters a Linux system for the first time, their first thought is: where are the “C:/“, “D:/“, or “E:/” drives? So, my innocent Linux newbies, you must know that Linux doesn’t have any concept of local disk like in Windows; here,

Beginners Guide for Type Command in Linux

The type command tells you the actual type of the referenced command. With this information, you can figure out how a command will be interpreted when you execute it in the terminal. The following is the list of known command types: Aside from showing the

Beginners Guide for Time Command in Linux

The time command is used to determine the amount of time taken by the referenced command or shell script to execute in your system, from start to finish. It returns the result in three categories: real time, user time, and system time (we will discuss

Beginners Guide for Sleep Command in Linux

As its name suggests, the sleep command is commonly used by shell script writers to delay the execution of individual or portions of commands specified after this command in script. Using this command, you can delay the next command’s execution for the specified number of

List of Special Parameters in Bash with Examples

In this article, you will learn what the difference is between variables and parameters, what special parameters are, and a list of predefined special parameters in Bash. What are “Special Parameters” in Bash? Before you can understand what special parameters are, you must first understand

Beginners Guide for Wall Command in Linux

If you are a sysadmin, then wall command can be your next favorite Linux tool, thinking why? With the help of this tool, you can broadcast messages to all logged-in users on your system, either locally or via SSH. This tool comes in handy, especially

Beginners Guide for Pstree Command on Linux

The ps and top commands are the most popular and commonly used command-line programs to view the currently running processes on your Linux system. The pstree is also similar to them, except that it outputs the running process in the form of a tree; if

Check If You Are Using SystemD or Not on Linux

This article will show you three methods for determining whether your Linux system is using systemd or another init system. If you are unfamiliar with this term, check the following section; otherwise, skip to the next section. What are Init and SystemD in Linux? The

What is SystemD on Linux?

This article will teach you what systemd is and why it replaced SysVinit; what systemd unit files are; how to list all and specific unit files; and how to view the content of a unit configuration file. Why SystemD? To understand Systemd, you must first

What is ‘init’ Process and Command on Linux?

In this article, you will learn about the short description of the init process, the runlevels of init, and the init command in a Linux system. What is Init Process? In layman’s terms, when you press the power button, your system will first look for

Everything About /proc File System on Linux

Proc file system (short for “procfs”, referring to “/proc” dir) is a virtual file system (not a real file system) that is mounted on system boot to store information related to running processes. The proc file system stores useful information about the running process and

What are File Descriptors in Linux

In this article, you will learn everything about file descriptors, like their uses in Linux, what a file descriptor table is, how to view the file descriptors under a specific process, and how to change the limit of a file descriptor in Linux. What are