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
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 […]