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
How to Kill a Background Process in Linux

How to Kill a Background Process in Linux

Linux is a multi-user and multi-task operating system. It supports more than one user and can run multiple processes simultaneously. Technically, that is not the case; the Linux kernel uses scheduling and other process management methods to assign a specific time to each process, making them appear to run simultaneously. However, Linux allows us to […]

What Exactly Does tar xvf Do?

What Exactly Does tar xvf Do?

Linux is known for its broad functionality and the hands-on approach it offers its users. This same functionality comes into play when you want to create Archives on Linux, compressed files. Tar commands, short for tape archive, let you create, extract, and maintain Archived files. This article will mainly be looking at the tar xvf […]

Linux ls Command File Size Formatting

Linux ls Command File Size Formatting

Apart from cd, rm, cp, and a handful of other commands, ls is the most basic command any Linux user should know. Its primary use is to show files and directories within a file system and giving detailed information. It is available in all systems that use the Linux kernel. This tutorial will use the […]

How to Bring a Background Linux Process to The Foreground

How to Bring a Background Linux Process to The Foreground

A process is an instance of a running program. Any program you execute in a Linux shell spawns a new process that’s identifiable using a process name and a Unique Process ID. As a system administrator, you will need to be  familiar with the command for managing processes in a Linux system This article will […]

How to tar a Folder in Linux

How to tar a Folder in Linux

Tape Archive or tar is a file format for creating files and directories into an archive while preserving filesystem information such as permissions. We can use the tar command to create tar archives, extract the archives, view files and directories stored in the archives, and append files to an existing archive. Tar is a simple […]

How to SSH Using Private Key Linux

How to SSH Using Private Key Linux

Secure SHEEL, commonly known as SSH, is a popular open-source network protocol used to secure connections from a client to an SSH server. SSH allows remote control of the target host, port forwarding, executing commands, and files transfer. SSH uses two types of methods to authenticate users; passwords and public-key authentication. This guide will walk […]

How to Extend XFS Filesystem in Linux Without LVM

How to Extend XFS Filesystem in Linux Without LVM

This tutorial will walk you through how to extend your XFS Filesystem without LVM. NOTE: I tested the concepts in this tutorial on a CentOS 8 system. However, the approaches discussed will work on any System using the XFS File system. Step 1: Show partition scheme information The first step is to get information about […]

All the Ways to Move Files in Linux for Beginners

All the Ways to Move Files in Linux for Beginners

Certain tasks are pretty easy to perform, but many users get stuck because they are unaware of their proper functionality. When a user shifts to a different platform, these minor operations become time-consuming, and one of those tasks is moving files/folders from one path to another. When you switch from Windows to Linux system, the […]

How to reload /etc/hosts after editing in Linux?

How to reload /etc/hosts after editing in Linux?

A hosts file is responsible for mapping every website’s domain name with its IP address in every operating system. In simple words, it means that whenever we access any domain on our system, the operating system tries to search the hosts’ file for its corresponding IP address. This article will look at how one can […]

Linux Top Command with Examples

Linux Top Command with Examples

The very basic commands and easily implementable ones are known to be the Linux Top commands. These are used to show the processes and their details. It shows the summary of information of all the running processes in the system. This interface of the top command is divided into two parts. One shows the stats […]