Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the js_composer domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/holhol2/public_html/wp-includes/functions.php on line 6121
Kill All Stopped Jobs Linux

Kill All Stopped Jobs Linux

In Linux, a job refers to a process started and managed by the shell. That can be a single command, a long and complex shell command including pipes and redirections, an executable, or a script. Each job in Linux is managed by assigning a sequential job IP associated with a specific process. A key concept […]

How to Use LDD Command in Linux

How to Use LDD Command in Linux

In Linux systems, we constantly work with executable files either in the terminal or graphical applications. Executables contain shared libraries, which are files that are shared and reused across programs. In windows, these are typically in the form of DDL files. In Linux, however, they are in the form of .o or .so files. This […]

How to List Users in Linux

How to List Users in Linux

Linux is a multi-user operating system. To keep the system functional and productive, proper user management is mandatory. For a system administrator, knowing all the users is necessary to manage users and permissions. This guide demonstrates how to list users in Linux. Listing users The system stores the list of users in specific files and […]

How to see rsync progress?

How to see rsync progress?

rsync is a popular tool for synchronization files between two computer systems. It is a valuable utility for syncing files locally and remotely. This file transfer and synchronization tool are often seen in Linux or Unix-based systems. For saving network bandwidth, rsync employs a type of delta encoding. This delta encoding enables rsync to send […]

How Do I Find Parent Process in Linux

How Do I Find Parent Process in Linux

During the execution of a program, the kernel creates a process that helps store the program’s execution details in the system’s memory. When a program executes, it becomes a process for the system. So, we can say a process is a program until it executes. The process created by the kernel is known as the […]

Rename Linux Files with Rename

Rename Linux Files with Rename

When working with files, renaming them is one of the most basic actions. In Linux, renaming a file or directory is mostly done using mv. However, when it comes to renaming multiple files or folders, using mv becomes complex. It requires constructing complex loops and piping to get the job done. The rename command is […]

useradd vs. adduser Linux with Examples

useradd vs. adduser Linux with Examples

While managing users, Linux administrators need to manage different types of users based on the privileges he/she wants to set. User management includes access control and Group management of the user. It is often seen that when we create users in Linux, there are two types of commands available useradd and adduser. This post will […]

The Linux Set Command

The Linux Set Command

The Linux set command is a built-in shell command that allows you to display or set both shell and environment variables. In this guide, we cover the set command and demonstrate the various ways that the command-line utility can be used. Basic Syntax The set command takes the following syntax: $ command -options arguments Command […]

How to Know if IP Address is Static or Dynamic in Linux

How to Know if IP Address is Static or Dynamic in Linux

On the internet, a user is recognized by a distinctive identity called IP address. This 32-bit address is dynamically assigned by Dynamic Host Configuration Protocol (DHCP). Addresses allocated by DHCP can be changed upon rebooting your system, whereas static IP address does not change. So why do people use static IP address? Static IP address […]

How to Symlink a Directory in Linux

How to Symlink a Directory in Linux

Symlink, also known as a symbolic link in Linux, creates a link to a file or a directory for easier access. To put it in another way, symlinks are links that points to another file or folder in your system, quite similar to the shortcuts in Windows. Some users refer to symlinks as soft-links. Before […]