
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
Satish Kumar has Published 1032 Articles

Satish Kumar
2K+ Views
One of the most powerful features of the Linux operating system is the ability to find and manipulate files quickly and easily from the command line. This can be especially useful when working with large numbers of files or when you need to automate certain tasks. In this article, we ... Read More

Satish Kumar
22K+ Views
The netcat command in Linux is a powerful tool for network communication and troubleshooting. It allows users to read and write data to network connections using the TCP or UDP protocols. In this article, we will explore the various uses and capabilities of the netcat command, including examples of how ... Read More

Satish Kumar
29K+ Views
There are several ways to remove the first line of a text file in Linux. In this article, we will go over three different methods that can be used to accomplish this task. Method 1: Using the head Command The head command is a Linux utility that is used to ... Read More

Satish Kumar
2K+ Views
Linux is a powerful operating system that allows users to perform a wide range of tasks, including redirecting the output of an already running process. This feature is particularly useful when you want to send the output of a process to a file, a different terminal window, or even a ... Read More

Satish Kumar
15K+ Views
Introduction A Linux zombie process is a process that has completed execution, but its parent process has not yet collected its exit status. These processes can cause system slowdowns and memory leaks if left unaddressed. In this article, we will discuss how to clean up a Linux zombie process and ... Read More

Satish Kumar
2K+ Views
Root-login over SSH is a common method for gaining access to a Linux server, but it is not always the most secure option. In this article, we will explore the reasons why disabling root-login over SSH is a good idea, and provide examples of how to do so. What is ... Read More

Satish Kumar
365 Views
Creating a crontab through a script on Linux is a simple and efficient way to automate repetitive tasks and schedule them to run at specific intervals. In this article, we will take a closer look at how to create a crontab through a script on Linux, including examples and tips ... Read More

Satish Kumar
10K+ Views
When working with the command line on a Unix or Linux operating system, there are three files that play an important role in setting up and configuring your shell environment: .bashrc, .bash_profile, and .profile. These files are used to customize your shell environment and set up different settings and configurations ... Read More

Satish Kumar
4K+ Views
When working with Linux systems, it is important to be able to check the network availability of a specific host. This can be useful for troubleshooting connectivity issues, monitoring network performance, or simply checking the status of a specific server or device. In this article, we will discuss several methods ... Read More

Satish Kumar
1K+ Views
Introduction Sed, short for Stream Editor, is a powerful command-line tool that is used to manipulate and transform text. It is commonly used to perform operations on input files, such as replacing text, deleting lines, and inserting new text. However, sed can also be used with a literal string instead ... Read More