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
Command to sync time with NTP server in Linux

Command to sync time with NTP server in Linux

For many people, computer clocks in your devices, network machines, and servers are generally accurate. But that’s not true! These clocks are manually maintained and backed by batteries which over time drift the clock, especially in the older machines. So why is accurate time so important? Having exact time on your machine is quite significant […]

How to Make an Entry in fstab in Linux

How to Make an Entry in fstab in Linux

Fstab stands for File System Table, which is a system configuration file. This file is known as one of the most critical files in any Linux distribution because it handles the mounting and unmounting of file systems to the hardware. When you attach a new Hard Drive or SSD, you need to edit the fstab […]

“iftop” Command Linux Examples

“iftop” Command Linux Examples

“iftop” is a network monitoring command in Linux that displays real-time information about your network bandwidth usage. This command can easily be installed on any Linux distribution and can be used very conveniently. This article will be based on the installation method of this command, followed by a few of its use cases. Installing the […]

How do I open a PDF in a Linux terminal?

How do I open a PDF in a Linux terminal?

“Evince” is the program used for opening and rendering a PDF document for viewing purposes only in a Linux terminal. It is GNOME’s default document viewer, so it comes pre-installed in the latest versions of GNOME. This post will briefly introduce the evince command and learn how to install evince in any Linux Operating system, […]

How Do I Find My User ID in Linux

How Do I Find My User ID in Linux

Linux operating system has made everything very simple. It doesn’t stick the user with one approach as a single function can be performed in multiple ways. Whether you want to go with the built-in commands or prefer to install any tool, the choice is yours! Similarly, in this guide, we will see many ways to […]

How do I empty a directory in Linux?

How do I empty a directory in Linux?

In Linux systems, various methods are used for removing directories. As a Linux user, you can remove files and folders using a graphical user interface or by Desktop file manager; for example, KDE Dolphin, Gnome’s Files can be used for the same purpose. However, if you want to remove several directories instantly and are operating […]

How Do You Pipe the Output of a Command to a File in Linux

How Do You Pipe the Output of a Command to a File in Linux

A pipe is a command that is utilized by most Linux users for redirecting the output of a command to any file. Unix and Linux operating systems use this command for sending the output of any process, output or program as an input to another process. These operating systems permit the connection between the stdout […]

How to check user login history in Linux?

How to check user login history in Linux?

Linux is one of the most accepted operating systems for multi-user setup. A multi-user operating system means a system that more than one user can access. These systems are mostly used in servers of large organizations, businesses, government, and educational sectors. Different users access the multi-user operating system, and to monitor users’ activity, it is […]

Linux Perf commands

Linux Perf commands

There are a vast number of tools that can allow you to audit the performance of your Linux system. In this tutorial, we tackle the perf command-line utility. Perf is a command-line tool for lightweight CPU profiling; it checks CPU performance counters, tracepoints, upprobes, and kprobes, monitors program events, and creates reports. How to install […]

Linux strace command

Linux strace command

Linux provides a wealth of debugging tools for troubleshooting services and applications. A beneficial tool to developers is the Linux strace command. The strace command is a debugging and troubleshooting tool that intercepts and records system calls made and received by a process. It provides an elaborate binary sequence from the beginning right to the […]