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

How to List All Symlinks in the Linux Directory

How to List All Symlinks in the Linux Directory

The symbolic link, also known as symlink or soft link, is the file type that can hold the location of a file or directory in any Linux file system. You have created a couple of Symbolic links in your Linux filesystem, and sometimes there comes a need to list all the symbolic links. This post […]

How to Show MOTD in Linux

How to Show MOTD in Linux

MOTD is the abbreviation of “Message Of The Day”, and it is used to display a message when a remote user login to the Linux Operating system using SSH. Linux administrators often need to display different messages on the login of the user, like displaying custom information about the server or any necessary information. To […]

How Do You Keep a Terminal Session Alive?

How Do You Keep a Terminal Session Alive?

The system or server administrator often needs to keep a terminal session alive for maintaining a process or application running. However, when we close the SSH connection or do not send any information to the server, the terminal session will close. To prevent the server to auto-close the terminal session, we can perform some configuration. […]

How to Create a Ramdisk in Linux

How to Create a Ramdisk in Linux

A ramdisk is a volatile storage space defined in the RAM memory. Using this feature increases file processing performance ten times over the best SSD hard disks. Implementing a ramdisk is very advantageous for users whose tasks require significant amounts of hardware resources. In addition, media editors and gamers can enjoy this implementation. A ramdisk […]

How do I add a user in Linux without a home directory?

How do I add a user in Linux without a home directory?

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. We will add […]

How do I know what version of WSL I have?

How do I know what version of WSL I have?

Windows subsystem for Linux, also known as WSL, is a feature in Windows developed by Microsoft incorporation with Canonical to make Linux run on Windows 10 devices. Many of us hardly know the Windows 10 is now natively supporting Linux; yes! As a result, you can run any Linux distribution on Windows 10 without installing […]

How do I show unmounted drives in Linux

How do I show unmounted drives in Linux

Unmounting a file/folder means it is inaccessible for the device to read and make any modification. To access the particular unmounted folder or drive, we need to mount it first. Mounted drives mean it is in the active state, and data is accessible for the system. Multiple types of disks can be mounted, such as […]