
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 1354 Articles for Open Source

5K+ Views
The optimal block size to use with the dd command in Linux depends on the specific use case and the hardware that you are working with. However, as a general rule of thumb, it is best to use a block size that is a multiple of the disk's physical block size, as this can lead to better performance. To determine the physical block size of a disk, you can use the fdisk command with the -l option. This will list all the partitions on the disk, along with the start and end cylinders, and the block size. For example, to ... Read More

3K+ Views
Logs are a crucial component of any Linux system, as they provide a record of system activity, including system events, user actions, and system processes. Log checking, or log monitoring, is the process of regularly reviewing log files to identify any unusual or suspicious activity, such as failed login attempts, system crashes, or security breaches. Log checking is important for maintaining the security and stability of a Linux system, as it allows administrators to quickly identify and troubleshoot problems, and detect and respond to potential security threats. Basic journalctl Commands journalctl is a command line utility for viewing and managing ... Read More

2K+ Views
The ps command in Linux is used to display information about the running processes on a system. It provides a snapshot of the current processes, including the process ID (PID), the user that owns the process, the percentage of CPU and memory usage, and the command that started the process. By default, ps only shows information about processes that are running in the same terminal session as the ps command. However, using various options and command line arguments, you can customize the output to show information about all processes running on the system, or even remotely. Listing All Processes To ... Read More

2K+ Views
Bash globbing is the process of using wildcard characters to match multiple filenames or paths. Bash provides several special characters that can be used for globbing, such as *, ?, and []. The * character is a wildcard that can match zero or more characters in a filename or path. For example, the command ls * would list all files in the current directory, while the command ls *.txt would list all files with the ".txt" extension in the current directory. The ? character is similar to the * character, but it only matches a single character. For example, the ... Read More

14K+ Views
You can use the find command in Linux to search for files ending with CRLF, and the dos2unix command to convert those files to use LF line endings. To search for files ending with CRLF, you can use the following command − find /path/to/search -type f -exec grep -Iq . {} \; -and -exec grep -Il $'\r' {} + This command searches for all regular files in the directory "/path/to/search" and its subdirectories, and prints the names of the files that contain CRLF line endings. Once you have identified the files that need to be converted, you can use ... Read More

39K+ Views
Introduction Secure Shell (SSH) is a commonly used protocol for secure remote access to Linux servers. When multiple users are connected to a Linux server via SSH, it can be useful to list all connected SSH sessions for administrative or monitoring purposes. In this article, we will discuss how to list all connected SSH sessions on Linux using various command line tools. List of SSH sessions connected with the who command The who command is a simple and widely available command-line tool for listing logged in users on a Linux system. To list all connected SSH sessions, you can use ... Read More

7K+ Views
Introduction On Linux, a “.pid” file is a process identification (PID) file. It is used to store the process ID (PID) of a running process. The PID is a unique number assigned to each process when it is created and is used to identify the process in the operating system. The .pid file is usually located in the /var/run or /var/run/ directory and is named after the process it represents. In this article, we will discuss what .pid files are, how they are used, and how to work with them. What is a PID file? A PID file is a ... Read More

7K+ Views
Introduction On Linux, the "last" command is used to display a list of users who have previously logged in to the system. This command is especially useful for system administrators who need to track user activity on a server. The last command can display a variety of information, including the date and time of access, the duration of the session and the terminal or device used to access the system. Options and Syntax The basic syntax of the last command is as follows − $ last [options] [username] Options available with the last command include − -a − Display ... Read More

448 Views
Introduction In this article, we will discuss how to manage processes in Linux. A process is an instance of a program that is executed by the operating system. Understanding how to manage processes in Linux is essential for system administrators and developers working with Linux systems. One of the most important aspects of process management in Linux is the ability to see running processes and their status. This information can be used to identify any problems that may be occurring on your system, as well as to monitor system performance and resource usage. Furthermore, being able to manage and ... Read More

340 Views
Introduction File linking in Linux is a powerful feature that allows users to create multiple references to the same file. This can be useful in a variety of situations, such as when you want to link to a file or when you want to share a file across multiple directories. In this article we will discuss the different types of shortcuts that can be created in Linux and the commands used to create them. We'll also explore the differences between hard links and soft links, and when to use each type. Hard Links A hard link is a direct link ... Read More