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 is the Meaning of chmod 755, and How to execute and Verify It?

What is the Meaning of chmod 755, and How to execute and Verify It?

In Linux, chmod is a built-in command that manages the access permission of file objects (files and directories). It can assign groups, users, and others to have permission for executing, reading, and writing permission on a certain file or directory. The number defined after chmod represents the permissions. The chmod 775 is an essential command […]

How to Run “patch” Command in Linux?

How to Run “patch” Command in Linux?

The “patch” is a command for adding patch files to source code or text files. It takes input as a patch file and applies differences to original files. We use the “diff” tool to get the difference. The “diff” is abbreviated as “differences” and is used to compare the content of two files and list […]

How to Use Linux Journalctl Command?

How to Use Linux Journalctl Command?

Linux-based systems provide multiple tools that help record and analyze system logs. Just like the “systemd”, which is a powerful tool used to collect logs from the sources in a binary format and allows the user to get the logs using command-line. The logs we discussed in the above section are the “Journal logs”. The […]

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