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
Operating System Articles - Page 56 of 199
15K+ Views
Introduction When you are running updates on Ubuntu, you may come across an error message that says "Some index files failed to download". This error occurs when Ubuntu is unable to download the package indexes from the software repositories it relies on for updates. The package indexes contain a list of available packages, their versions, and dependencies. Without these indexes, you cannot update or install new packages on your system. It is important to fix this error as soon as possible because it can cause your system to be vulnerable to security risks and bugs. Additionally, if you ... Read More
1K+ Views
Grep (global regular expression print) command matches and searches the specific pattern in the regular expressions. This command filters and searches for a particular pattern of characters and displays them as output. It is considered one of the most useful commands on Unix / Linux-like systems for sysadmins and developers. Linux contains various types of commands and utilities to simplify every task. Unlike other operating systems, finding any file in Linux is simple because you can use the grep command to search any file. You can use the grep command to display the specific file's name that contains a particular ... Read More
1K+ Views
The process of monitoring all these data packets passing through the network is called sniffing. Network administrators commonly use sniffers to troubleshoot and monitor network traffic. The attackers use these sniffers to capture and monitor data packets to steal sensitive user account information, such as passwords, username, and location. Network packets are the basic data unit grouped and transferred over packet-switched networks, computer networks such as the Internet. You can also monitor and intercept traffic on the network by using software that captures all the data packets passing through the network interface. You can do the same using hardware tools ... Read More
1K+ Views
cURL is used to request data from a server and send it to a device. Through this command, the user specifies the server URL and the data it needs to send the URL (the location to which the request is sent). Curl works on Windows, MacOS, and Linux and supports over 25+ protocols, including SFTP, FTP, HTTPS, and HTTP. Regarding API calls and debugging network requests, curl is one of the best open-source and free tools. The word 'Proxy' stands for 'act on behalf of another.' Similarly, the proxy server also acts on behalf of the end user. Proxy servers ... Read More
13K+ Views
Processing the commands in parallel can ease your work while executing multiple commands in Linux. As a Linux administrator, you can process multiple commands in parallel to perform various tasks, such as restarting services, installing system patches, and installing applications. Combining two or more commands in the command line is called command chaining. You can use command chaining to execute multiple commands in parallel. You can easily chain different commands at once to simplify the process. So in this long- guide, we will explain every process you can try to process Linux commands in parallel. Processing Linux Commands in Parallel ... Read More
3K+ Views
Printing lines between two patterns is functional when you need to print only a few lines from these files or keep your lines under a specific pattern. Although you can print the lines through the grep command, it is impossible to print the particular line. In this case, you can use commands like sed or awk to print lines between two patterns. So In this article, we will elaborate on various examples to print lines between two patterns in Linux. We will also include multiple conditions for using the sed and awk command to print lines between patterns. Printing Lines ... Read More
3K+ Views
Listing the size of each file and directory is good because it helps a user sort them according to the size. Sorting files according to size is necessary to free up space, make them more organized, etc. You can organize the Linux file system through the command line and graphical methods. It helps you to quickly locate the files and directories as per their contents available. So in this long guide, we will explain various ways to easily List each directory and sort them according to the size in Linux. List the Size of Each File and Directory and Sort ... Read More
2K+ Views
Groups in Linux are the collection of all the users of a system. These groups offer a convenient and simple way for the system users to share the directories with no issues. A Linux system can have many users who are divided into several groups. Admin must rank each member of these groups to assign the resource-driven permissions privileges. Users can mainly belong to two types of groups − Primary / Login Group Secondary / Supplementary Group User-created files are assigned to this group. The primary group usually has the same name as a user's name. ... Read More
1K+ Views
In bash, a newline refers to a line's end and a text's beginning. In Linux/Unix operating systems, the new line character is represented as ", " which instructs the terminal to move the cursor to the beginning of the next line. Many text editors don't show it by default. Inserting a new line character has several important reasons − It helps format the output to be understood and readable. Separating the output into sections makes it easier to locate specific information. The newline is also used as a line break that identifies the end of a line in a ... Read More
3K+ Views
A soft link (symlink or symbolic link) is generated as a shortcut to the available files or folders in the system. Usually, these soft links are used to link libraries. Soft links allow storing multiple clones of the same document in different file systems or destinations. This link refers to the path and address of the original document. The soft link contains different aspects, such as − Soft links can link to both directories and regular files. After deleting the soft link, the original document remains available. The symbolic link does not work when you move or delete the ... Read More