What is Subshell in Linux?

When you interactively login to your system, you usually interact with your main shell from the terminal to execute commands; however, from your main shell (or parent shell), you can spawn a subshell (or child shell). Confused? I knew this would be more difficult, especially

What Are the Different Types of Linux Shells?

The UNIX/Linux shell is a command-line program that creates a bridge between the terminal emulator and kernel to allow users to enter commands, execute programs, and perform various other tasks by typing commands at the command prompt. Once the shell has finished executing the user

How to Rename Files and Directories on Linux

Renaming files and directories is one of the most basic tasks that every Linux user performs regularly using the GUI or command line tools. In both of these tools, renaming a single file is pretty easy, but renaming multiple files can be trickier, especially for

Beginners Guide for Rename Command in Linux

In Linux, the rename command is an amazing utility that allows you to rename single or multiple files at once, based on a set of rules or regular expressions you specify. Most of the time, the mv command is used to rename files or folders.

How to Find the Most Used Commands in Your Linux System

As a Linux administrator or a normal user, you often have to execute multiple commands in your terminal emulator like Gnome Terminal or Konsole for different purposes. But have you ever wondered which command you are executing repeatedly without being aware of it? So, don’t

Beginners Guide for Watch Command in Linux

In UNIX/Linux, “watch” is a resourceful utility for monitoring updates in the specified command output (including errors) by refreshing the results every 2 seconds until it is interrupted using the “Ctrl+c” shortcut key. It makes it easier for you to monitor the updates in background

A Tale of “More” and “Less” Commands in Linux

Linux users often use “more” and “less” commands interchangeably to read large files without understanding their differences, as their definitions are also identical in the manual. So, what’s their difference, and when should you use them? All of this doubt will be cleared in this

Beginners Guide for Touch Command in Linux

The Linux user often uses the touch command as a way to create a text file in the current working directory, but this tool is not limited to that; it’s way bigger than creating a text file. The official description for touch command is “a

Listing All the Available Shells in Your Linux System

Bash is the most popular shell implementation program that most modern Linux systems like Debian and Ubuntu ship out of the box, unlike ZSH and Fish. However, operating systems like Kali Linux and macOS took a step forward by providing ZSH as the default login

What is Restricted Bash Shell (or rbash) on Linux

Linux (or its shells) is a powerful tool that can handle all the tasks on a workstation or server without a hitch, giving you full control over your system. Like managing the background process, setting up a web server, monitoring the network devices, handling a

What is Chroot Jail and its Usecase on Linux

While walking in your Linux journey, you might hit yourself with the term “chroot” (or “chroot jail”), and that’s what you’re about to learn today: what they are and their usage. Tutorial Details Description Chroot Jail Difficulty Level Moderate Root or Sudo Privileges Yes OS