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
Fix Bad Owners or Permission on .ssh/config

Fix Bad Owners or Permission on .ssh/config

We all love SSH! It is a powerful tool that we use to interact with remote machines and perform heavy tasks at the comfort of our local terminal. Due to the comfort and control that SSH gives us, we try to implement methods such as Password-less logins using SSH keys and two-factor authentications. However, despite […]

What Do the Colors Mean in Htop

What Do the Colors Mean in Htop

Htop is one of the greatest task managers for Linux systems. Okay, I am a little biased as I have actively contributed to its code. However, I think we can agree that htop is a great tool for monitoring and understanding what is going on in our Linux system. If you are not familiar with […]

Send a Process to Background Linux

Send a Process to Background Linux

When working with graphical desktop environments, we rarely worry about background processes. If we have a process running in the foreground, we can quickly spawn another terminal window and continue with our work. However, if you are in a raw terminal shell such as SSH, you will often feel concerned about processes that occupy and […]

SCP Recursively

SCP Recursively

Secure copy or SCP is a command-line utility that allows users to transfer files and directories securely from one machine to another over SSH protocol. SCP is handy as it is easy to use. Some of the features of using SCP to transfer files over remote hosts include: File and directory transfer gets implemented over […]

How to List and Selectively Remove Snapshots

How to List and Selectively Remove Snapshots

The lvm tool is used to create, manage, and visualize logical volumes, file systems, and snapshots in a system. In this tutorial, we will use the lvm tool to display detailed information of the logical volumes, volume groups, and snapshots and remove snapshots. Listing Snapshots Snapshots are created from logical volumes, and the logical volumes […]

How to Check the Size of /TMP in Linux

How to Check the Size of /TMP in Linux

There are multiple directories in Linux where the system stores data temporarily. These directories are larger than the home directory and do not get backed up. The “/tmp” directory is one of them. So, what is “/tmp” directory? The “/tmp” folder contains the files and data temporarily required by the operating system and other running […]

How to Compare Two Files in Linux

How to Compare Two Files in Linux

If you want to compare two files and decipher the difference, a command called “diff” is used. This guide is focused on providing you the usage of the “diff” command with various options to get the difference between two files. So, how does the “diff” command actually function? The “diff” command compares the two files […]

Linux xargs Command

Linux xargs Command

The xargs command is a command-line tool used to read data from standard input and later runs a command based on the standard input. It is a useful tool in file management, especially when used with other commands such as mkdir, grep, rm etc. In this tutorial, we are going to learn how to use […]

Use Netcat to Transfer Files

Use Netcat to Transfer Files

This tutorial offers an easy explanation of how to use Netcat to transfer files between devices. Netcat is a command-line network tool used to establish TCP/UDP connections and network analysis. Netcat features include: Outgoing and incoming connections, TCP or UDP, to or from any ports It can be used to open local ports Supports file […]

Linux Sync Time with Another Server

Linux Sync Time with Another Server

Time is a crucial factor in our daily lives and the technical side of things. Therefore, maintaining an accurate time between the Linux systems is an important factor. It allows you to accurately know when various accounts are logged, file changes, network packets, and other critical system logs. This can, in turn, be useful in […]