Operating System Articles

Page 113 of 171

Process Multiple Input Files Using Awk

Satish Kumar
Satish Kumar
Updated on 17-Mar-2026 3K+ Views

Awk is a powerful text processing tool widely used by developers, system administrators, and analysts to manipulate data in various ways. It can process text files, extract data, and transform it into different formats. One of its key features is the ability to process multiple input files simultaneously, making it ideal for batch processing tasks. How Awk Handles Multiple Input Files When processing multiple input files, Awk treats each file as a separate stream of input data. It reads each file in sequence, processing the input data from each file in turn. This allows you to process files ...

Read More

The uniq Command in Linux

Satish Kumar
Satish Kumar
Updated on 17-Mar-2026 2K+ Views

The uniq command in Linux is a powerful text processing utility used to filter out duplicate lines from sorted text files. It works by comparing adjacent lines and removing consecutive duplicates, making it an essential tool for data cleaning and text manipulation tasks. Syntax The basic syntax of the uniq command is straightforward: uniq [options] [input_file] [output_file] Where options are command-line switches that modify the behavior, input_file is the file to process (defaults to stdin), and output_file is where results are written (defaults to stdout). Important Note Critical: The uniq command only ...

Read More

Installing AWS CLI on Linux

Satish Kumar
Satish Kumar
Updated on 17-Mar-2026 2K+ Views

Amazon Web Services (AWS) is one of the most popular cloud computing platforms in the world. It provides a wide range of services, such as storage, computing, networking, and databases, to name a few. AWS Command Line Interface (CLI) is a powerful tool that allows you to manage your AWS resources using commands in the terminal or shell. In this article, we will discuss how to install AWS CLI on Linux, including various methods and configuration steps. Step 1: Check Python Installation Before installing AWS CLI, you need to ensure that Python is installed on your Linux system. ...

Read More

20 Things to Do After Fresh Installation of Fedora 26 Workstation

Satish Kumar
Satish Kumar
Updated on 17-Mar-2026 383 Views

Fedora 26 Workstation is an operating system built on the Linux kernel, which provides users with a highly customizable, secure, and powerful computing experience. It is designed to cater to developers, system administrators, and users who want to leverage the latest technologies and features. If you have just installed Fedora 26 Workstation, here are 20 essential things you can do to make the most of your new installation. 1. Update Your System After installing Fedora 26, the first thing you should do is update your system. This ensures you have the latest packages and security patches. ...

Read More

20 Useful Commands of 'Sysstat' Utilities for Linux Performance Monitoring

Satish Kumar
Satish Kumar
Updated on 17-Mar-2026 2K+ Views

In the world of Linux system administration, performance monitoring is a critical task for maintaining optimal system health. The Sysstat utilities are among the most powerful and widely-used tools for this purpose. This comprehensive collection provides detailed insights into CPU utilization, memory usage, disk activity, network statistics, and much more. In this article, we will explore 20 essential commands from the Sysstat utilities suite that every Linux administrator should master for effective performance monitoring. Installation of Sysstat Utilities Before exploring the commands, you'll need to install the Sysstat package. While most modern Linux distributions include it by ...

Read More

20 Useful PKG Command Examples to Manage Packages in FreeBSD

Satish Kumar
Satish Kumar
Updated on 17-Mar-2026 3K+ Views

FreeBSD is a free and open-source Unix-like operating system based on Berkeley Software Distribution (BSD) system. It is widely used by developers, system administrators, and users who are looking for a reliable and secure operating system. One of the main features of FreeBSD is its package management system, which allows users to easily install, update, and remove software packages using the pkg command. Basic Package Management Commands 1. Installing Packages To install a package in FreeBSD, use the pkg install command followed by the package name − pkg install apache24 2. Updating All ...

Read More

22 Best Linux Text Editors for Programming & Coding

Satish Kumar
Satish Kumar
Updated on 17-Mar-2026 5K+ Views

Linux is a popular operating system among developers and programmers due to its flexibility, customization, and open-source nature. One of the essential tools for developers is a text editor, which enables them to write and edit code efficiently. In this article, we will explore the 22 best Linux text editors for programming and coding, categorized by their strengths and use cases. Command-Line Powerhouses Vim Vim is a powerful modal text editor that is extremely popular among Linux users. It operates entirely through keyboard shortcuts, making it incredibly fast once mastered. Vim's extensive customization options through plugins and ...

Read More

25 Big Companies and Devices Running on GNU/Linux

Satish Kumar
Satish Kumar
Updated on 17-Mar-2026 5K+ Views

GNU/Linux is a free and open-source operating system that has gained widespread adoption across industries due to its cost efficiency, reliability, and security. From tech giants to government agencies, numerous organizations have embraced GNU/Linux for their critical operations. This article explores 25 prominent companies and devices that rely on GNU/Linux infrastructure. Major Technology Companies Google Google has been utilizing GNU/Linux since its inception. The company's massive server infrastructure, powering services like Search, Gmail, and Google Drive, runs entirely on GNU/Linux. Additionally, Android, Google's mobile operating system used by billions of devices worldwide, is built on the Linux ...

Read More

25 Practical Examples of Linux Find Command

Satish Kumar
Satish Kumar
Updated on 17-Mar-2026 4K+ Views

The Linux find command is a powerful utility that enables you to search for files and directories on your system. The command searches for files and directories based on various criteria, including file name, type, size, date modified, ownership, and permissions, among others. This article provides 25 practical examples of how to use the Linux find command to search for files and directories based on specific criteria. Each example demonstrates real-world scenarios that system administrators and users encounter daily. Basic File and Directory Search 1. Find Files by Name The simplest way to use the Linux ...

Read More

25 Useful 'ps Command' Examples for Linux Process Monitoring

Satish Kumar
Satish Kumar
Updated on 17-Mar-2026 2K+ Views

The ps command is a powerful tool used for monitoring processes in Linux operating systems. It stands for process status and displays information about processes currently running on a system. This information is useful for troubleshooting, optimizing performance, and identifying potential security issues. Below are 25 useful ps command examples for effective Linux process monitoring. Basic Process Listing Display All Running Processes ps aux This displays all processes with detailed information including PID (process ID), CPU usage, memory usage, user, and command. Show Process Tree Structure ps auxf The ...

Read More
Showing 1121–1130 of 1,707 articles
« Prev 1 111 112 113 114 115 171 Next »
Advertisements