Articles on Trending Technologies

Technical articles with clear explanations and examples

How to remove old Docker containers?

Raunak Jain
Raunak Jain
Updated on 17-Mar-2026 900 Views

Docker allows you to remove old and stale containers that are no longer needed. You can use the docker rm or docker container rm commands to accomplish this. However, before removing containers, ensure that none are actively running, as Docker will throw an error for running containers. There is a workaround for this − you can remove Docker containers forcefully using the --force option. The Docker remove commands allow you to remove one or more containers together by specifying their container IDs or names. If you want to delete all Docker containers simultaneously, you can achieve this using sub-commands. ...

Read More

Open Source Operating Systems

David Meador
David Meador
Updated on 17-Mar-2026 4K+ Views

Open Source operating systems are released under a license where the copyright holder allows others to study, change, and distribute the software to other people for any reason. These systems provide transparency, community collaboration, and freedom from licensing fees, making them popular choices for developers, researchers, and organizations. Types of Open Source Operating Systems Desktop and General-Purpose Systems Cosmos Cosmos (C# Open Source Managed Operating System) is an open source operating system written primarily in C#. Rather than being a fully-fledged operating system, Cosmos serves as a toolkit that allows developers to easily build their own ...

Read More

Crucial Linux ls Commands to Know

Pradeep Jhuriya
Pradeep Jhuriya
Updated on 17-Mar-2026 3K+ Views

When working with the Linux operating system, one of the most fundamental skills is navigating and managing files and directories. The ls command is essential for listing directory contents and forms the backbone of file system navigation. This article explores the most crucial ls commands that every Linux user should master to work more efficiently and effectively. Basic ls Command The ls command is the most basic and commonly used command in Linux. When executed without any options, it simply lists the contents of the current working directory. $ ls file1 file2 ...

Read More

File System Management

Alex Onsman
Alex Onsman
Updated on 17-Mar-2026 11K+ Views

File System Management provides a uniform view of data storage by the operating system. Files are mapped onto physical devices that are usually non-volatile, ensuring data persistence in case of system failure. The file system acts as an interface between applications and storage hardware, abstracting the complexities of physical storage. File Attributes File attributes provide metadata about files that the operating system uses for management and access control. While attributes may vary across different operating systems, the common file attributes include: Name The symbolic name of the file that is human-readable. This is the identifier users typically ...

Read More

Difference between CSH and BASH

Md. Sajid
Md. Sajid
Updated on 17-Mar-2026 8K+ Views

CSH and BASH are two prominent command-line shells in Unix and Linux systems. A shell acts as an interface between users and the operating system, allowing users to execute commands and run programs. Both shells provide interactive command-line environments and scripting capabilities, but they differ significantly in syntax, features, and usage patterns. What is CSH? CSH (C Shell) was developed by Bill Joy at the University of California, Berkeley, in the late 1970s. It was designed to provide a more user-friendly alternative to the original Bourne shell, with syntax inspired by the C programming language. Key Features ...

Read More

How to remove sections from each line of files in the Linux system?

Shilpa S
Shilpa S
Updated on 17-Mar-2026 2K+ Views

In this article, we will learn to remove sections from each line of files in the Linux/Unix operating system using the cut command. The cut command is used to extract and print selected portions of each line from files. It allows you to cut specific sections of a line by byte position, character position, or field delimiters. This makes it particularly useful for processing structured text data, CSV files, and extracting specific columns from formatted output. Syntax The general syntax of the cut command is as follows − cut OPTION... [FILE]... Options ...

Read More

Loading and Removing Kernel Module

Ricky Barnes
Ricky Barnes
Updated on 17-Mar-2026 1K+ Views

Linux kernel modules are pieces of code that can be loaded into or removed from the kernel dynamically without recompiling the kernel or rebooting the system. This modular approach enhances system functionality while maintaining efficiency and flexibility. Without kernel modules, the operating system would need to include all anticipated functionalities in the base kernel, leading to memory wastage as most systems would rarely be used. Users would also need to rebuild and reboot the kernel for new functionality, making the system less flexible. Kernel modules have a .ko extension and reside in the /lib/modules//kernel/ directory. The major types ...

Read More

How to Install Bower on Ubuntu

Sharon Christine
Sharon Christine
Updated on 17-Mar-2026 1K+ Views

Bower is a package manager for web development that provides a standardized approach to front-end package management. It maintains and monitors all packages, checks for updates, and uses a manifest file called bower.json to track dependencies. This article explains how to install Bower on Ubuntu. Prerequisites To install Bower, you need Node.js and NPM pre-installed on your system. First, verify that Node.js is installed by checking its version: $ node -v The output should display the Node.js version: v6.9.2 Next, verify the NPM version: $ npm -v ...

Read More

How to removes duplicate lines from a sorted file in Linux?

Shilpa S
Shilpa S
Updated on 17-Mar-2026 8K+ Views

To remove duplicate lines from a sorted file and make it unique, we use the uniq command in the Linux system. The uniq command works as a filter program that reports and removes duplicate lines in a file. It filters adjacent matching lines from the input and gives a unique output. This command is also available in Windows and IBM i operating systems. Syntax The general syntax of the uniq command is as follows − uniq [OPTION]... [INPUT [OUTPUT]] Options Brief description of options available in the uniq command − ...

Read More

Vagrant vs Docker for creating an isolated environment

Raunak Jain
Raunak Jain
Updated on 17-Mar-2026 561 Views

Vagrant is a software tool that allows you to create and manage virtual machines that replicate specific environments exactly as needed. Vagrant enables you to test applications in controlled environments by mirroring the operating system and all appropriate configurations through complete virtualization. Docker is a containerization platform that lets you package applications into lightweight containers, creating isolated microenvironments for deployment without running a full virtual machine. Each container provides a separate, isolated environment containing only the necessary application components. Both tools help developers, testers, and DevOps engineers reduce debugging time by ensuring consistent environments across development, testing, and ...

Read More
Showing 9361–9370 of 61,299 articles
« Prev 1 935 936 937 938 939 6130 Next »
Advertisements