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 Run “script” Command in Linux?

How to Run “script” Command in Linux?

The script command is used to typescript or record all terminal processes. After running the script command, it begins recording everything that appears on the screen, including inputs and outputs, until it exits. If you don’t specify any argument, the “typescript file” will be created in the directory to save the terminal record. The script […]

How to Use md5sum Command?

How to Use md5sum Command?

We have already discussed in another tutorial about the Linux sha1sum command to check the file’s integrity. Similarly, on Linux systems, there are multiple checksums for the verification of messages, files, and data integrity. It is good to verify the operations when performed, like if you’re installing anything from the website, then to verify if […]

How to execute multiple curl requests in parallel

How to execute multiple curl requests in parallel

Suppose you want to run multiple curl requests concurrently for whatever reason, say 10 requests at the same time. How would you go about it? In this tutorial, we demonstrate how you can execute multiple curly requests concurrently. Run parallel requests using the xargs command The xargs command is a command in Linux and UNIX-like […]

How to Set Hostname Using Hostnamectl Command?

How to Set Hostname Using Hostnamectl Command?

The hostname is an identity of the system and is used by the networks to search the system. The “hostnamectl” is a Linux command that is used to set the hostname in the terminal without even opening and editing in the etc/hostname file of a system. Using the “hostnamectl” command, the user can edit the […]

How to Install and Setup Apache Spark on Ubuntu/Debian

How to Install and Setup Apache Spark on Ubuntu/Debian

Apache Spark is an open-source distributed computational framework that is created to provide faster computational results. It is an in-memory computational engine, meaning the data will be processed in memory. Spark supports various APIs for streaming, graph processing, SQL, MLLib. It also supports Java, Python, Scala, and R as the preferred languages. Spark is mostly […]

How to remove a directory in Linux

How to remove a directory in Linux

Performing CRUD Operations in Linux are daily routine tasks like creating, reading, updating, and deleting a file or directory. This post will walk through a detailed guide on how to remove a directory in Linux from the terminal. Removing a directory in lynx is not as easy as removing a file. A directory may be […]

How to Wait For a Specific Process to Complete In Linux

How to Wait For a Specific Process to Complete In Linux

If you are operating in a shell script of Linux and want to have the script’s desired outcome, it gets obligatory for you to use the wait command in your script. The wait command is implemented as a built-in command in most Linux distributions, which allows waiting for a specific process to complete, then returns […]

Linux hdparm Command Tutorial

Linux hdparm Command Tutorial

In Linux-type systems, the “hdparm” command tool is used to provide the interface for kernel-supported devices. It is to display the drive disk statistics and set hardware parameters and testing performance. This utility allows the user to perform DMA settings, set hardware parameters like cache settings, acoustic and power management. The operations of the “hdparm” […]

How to remove blank lines in a file in Linux

How to remove blank lines in a file in Linux

Blank lines are not always desirable, and you might feel the need to leave them out and only remain with the lines that contain text. Linux offers a couple of text manipulation expressions that you can use to omit or remove blank lines. Let’s explore some of the command-line tools you can use to remove […]

How to shut down your Linux system

How to shut down your Linux system

Linux comes with different utilities that allow the device to be rebooted, stopped, or turned off by a system administrator. To run commands, one must be a root or group member. The “shutdown” is employed to shut down and restart our system while the Reboot command restarts the system only. The “halt” command stops all […]