Satish Kumar has Published 1032 Articles

Guide to chgrp Command in Linux

Satish Kumar

Satish Kumar

Updated on 24-Mar-2023 15:41:26

9K+ Views

Introduction In Linux, chgrp command is a useful tool for changing group ownership of files and directories. It is an important command for system administrators who need to manage user permissions and access control on a Linux system. chgrp command is also useful for collaborative work where users need to ... Read More

Introduction to tee Command in Linux

Satish Kumar

Satish Kumar

Updated on 24-Mar-2023 15:40:47

531 Views

Introduction The tee command is a commonly used command in Linux. It is a simple yet powerful command that is used to read standard input, then write it to a file, and also to standard output. tee command takes its name from T-splitter used in plumbing, which splits a stream ... Read More

How to Kill a Background Process in Linux

Satish Kumar

Satish Kumar

Updated on 24-Mar-2023 15:40:12

15K+ Views

Linux is a powerful and flexible operating system that is popular among developers and system administrators. One of benefits of Linux is that it allows users to run multiple processes simultaneously, which can increase productivity and efficiency. However, sometimes a background process may become unresponsive or cause system performance issues. ... Read More

Linux ping Command

Satish Kumar

Satish Kumar

Updated on 24-Mar-2023 15:39:24

14K+ Views

Introduction In world of networking, ability to check if a networked device is reachable or not is a basic requirement. One of tools that can help us achieve this is ping command. ping command is a tool that sends a signal to a specified networked device, and then waits for ... Read More

How to find number of RAM Slots in Linux

Satish Kumar

Satish Kumar

Updated on 24-Mar-2023 15:38:36

12K+ Views

Random Access Memory (RAM) is an essential component of any computer system. It stores data that processor uses frequently to speed up processing of programs and applications. As number of RAM slots available on a computer determines maximum amount of RAM that can be installed, it is important to know ... Read More

Using gzip and gunzip in Linux

Satish Kumar

Satish Kumar

Updated on 24-Mar-2023 15:37:37

3K+ Views

Introduction When working in Linux, it's common to encounter large files that need to be compressed for storage or transfer. One popular compression tool available in Linux is gzip, which is used to compress files to save disk space and reduce transfer time. In this article, we'll explore how to ... Read More

How Do so (Shared Object) Filenames Work in Linux

Satish Kumar

Satish Kumar

Updated on 24-Mar-2023 15:36:38

2K+ Views

Introduction Linux is an open-source operating system that provides users with a wide range of features and functions. One of essential aspects of Linux is use of shared objects (so) files. Shared objects are files that are used by Linux programs to share code and data between different processes. In ... Read More

String Manipulation in Bash on Linux

Satish Kumar

Satish Kumar

Updated on 24-Mar-2023 15:34:28

2K+ Views

Bash is a shell language used in Linux systems that allows users to interact with system through command-line interface. Bash offers several string manipulation capabilities that can help users manipulate and process text strings. In this article, we will explore various techniques available for string manipulation in Bash. Basic String ... Read More

How to Reverse Order of Lines in a File in Linux

Satish Kumar

Satish Kumar

Updated on 24-Mar-2023 15:31:39

8K+ Views

As a Linux user, it is common to come across situations where you need to reverse order of lines in a file. This could be necessary when you want to read a file in a reverse order or when you want to perform certain operations that require content of a ... Read More

Delete Lines in a Text File That Contain a Specific String

Satish Kumar

Satish Kumar

Updated on 24-Mar-2023 15:30:56

9K+ Views

Introduction Text files are widely used for storing data and information in various fields such as computer science, engineering, healthcare, finance, etc. However, sometimes it is necessary to remove certain lines that contain specific strings or patterns from a text file. This task can be accomplished easily using various programming ... Read More

Advertisements