- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Kunal Verma has Published 20 Articles
Kunal Verma
38K+ 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
Kunal Verma
277 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
Kunal Verma
120 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
Kunal Verma
402 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
Kunal Verma
127 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
Kunal Verma
2K+ 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
Kunal Verma
38 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
Kunal Verma
124 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
Kunal Verma
324 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
Kunal Verma
292 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