Kunal Verma has Published 20 Articles

Get the Full Path of a File in Linux

Kunal Verma

Kunal Verma

Updated on 02-Sep-2023 15:16:41

40K+ Views

Abstract Every file and folder in Linux has a path that directs the user to it. This path is required for programs and scripts to locate and access files. There are various ways to locate the path to a file or folder if you need to. We can get a ... Read More

Working and components of Linux GUI with Examples

Kunal Verma

Kunal Verma

Updated on 01-Aug-2023 17:47:53

425 Views

Abstract Users can communicate with the system through an interface known as a GUI, or graphic user interface. Operating a GUI is a rather simple process. The activities are performed in the interface and are used as input before being delivered as a command to the system, which eventually ends ... Read More

Use sudo Command in Non-Interactive Mode

Kunal Verma

Kunal Verma

Updated on 01-Aug-2023 17:46:40

195 Views

Abstract In Linux, the sudo (Super User DO) command is frequently used as a prefix to a command that only superusers are permitted to execute. Any command that has the "sudo" prefix will run with elevated privileges, or in other words, allow a user with the necessary permissions to execute ... Read More

Linux Process States

Kunal Verma

Kunal Verma

Updated on 01-Aug-2023 17:45:44

1K+ Views

Abstract We'll learn about Linux process states in this article. We'll study each of the five states in which a Linux process can be at different stages in its life cycle. There are five states of a Linux process − Running & Runnable Stopped Uninterruptable Sleep Zombie Interruptable Sleep ... Read More

How to Monitor Disk IO in a Linux System

Kunal Verma

Kunal Verma

Updated on 01-Aug-2023 17:44:30

211 Views

Abstract Disk monitoring is an important task to perform while maintaining a linux system. Essentially, getting data back from the disk costs time. As a result, the disk I/O subsystem is considered the slowest part and can slow down the whole system. Checking disc performance is crucial as a result. ... Read More

How to List the Last Five Modified Files in Linux?

Kunal Verma

Kunal Verma

Updated on 01-Aug-2023 17:43:49

4K+ Views

In Linux, it is often necessary to find out the most recently modified files for various reasons, such as troubleshooting or auditing purposes. Listing the last five modified files is a common requirement that can be achieved using various Linux commands. In this article, we will explore some of the ... Read More

How Are Linux PIDs Generated?

Kunal Verma

Kunal Verma

Updated on 01-Aug-2023 17:42:51

59 Views

Following the system's interpretation of each command, a separate process is established to carry out the command. This new process is assigned a distinct process identification number (PID). To keep track of each process's current state, the system uses the PID. Note − Linux commands are case-sensitive. Process Table The ... Read More

Escaping Characters in Bash on Linux

Kunal Verma

Kunal Verma

Updated on 04-Apr-2023 10:47:31

148 Views

Abstract Characters are used in source code, command lines, and the majority of computer interaction. The majority of characters, on the other hand, are not represented by keys on a standard keyboard, and many are not even readable. Another category of characters is complicated control characters. We'll talk about character ... Read More

The “Oldconfig” Target In The Linux Kernel Makefile

Kunal Verma

Kunal Verma

Updated on 23-Mar-2023 18:27:12

396 Views

Abstract The Linux kernel is the core component of the Linux operating system, and it is responsible for managing system resources and providing various services to user space applications. Building the Linux kernel from source is a common task for developers and system administrators, and the Makefile is the primary ... Read More

Testing Bash Scripts With Bats in Linux

Kunal Verma

Kunal Verma

Updated on 23-Mar-2023 18:26:13

335 Views

Abstract There are countless applications for the widely used and beneficial scripting language bash. Despite the fact that the language itself is widely used, testing it is not as common. This may result in expensive mistakes and reduced trust in the code. In this article, we are going to understand ... Read More

Advertisements