Satish Kumar

Satish Kumar

937 Articles Published

Articles by Satish Kumar

Page 44 of 94

Best Skype Alternatives for Linux Desktop

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

Skype has long been a popular choice for video calling and instant messaging, but it's not always the best fit for Linux users. Fortunately, there are many excellent alternative options available that are fully compatible with Linux desktop environments and often offer superior features, better privacy, or more flexibility. In this article, we'll explore the best Skype alternatives for Linux desktop users, highlighting their key features, participant limits, and unique advantages to help you choose the right communication tool. Zoom Zoom is a leading video conferencing platform that gained massive popularity during the COVID-19 pandemic. The free ...

Read More

How to Get the Path of a Linux Command?

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

A Linux command that you run from a terminal window can be built-in (a part of the system), a function (an application that runs when you enter certain commands), an alias (another name for a command), or an external executable (a program that you download). You can use the which, command, whereis, whatis, and type tools to determine what each one is and where they are located. We will look at the which, command, type, and whereis commands as they are usually found in most Linux-based operating systems. PATH Environment Variable Before we get into the details ...

Read More

Linux comm Command

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

The comm command is a powerful Linux utility used to compare two sorted files line by line. It displays the comparison results in three columns: lines unique to the first file, lines unique to the second file, and lines common to both files. This command is essential for file analysis, data comparison, and finding differences between datasets. Syntax comm [OPTION]... FILE1 FILE2 Where FILE1 and FILE2 are the two sorted files to be compared. Common Options -1 − Suppress column 1 (lines unique to FILE1) -2 − Suppress column 2 (lines unique ...

Read More

Best Tools to Install on Fresh Linux Mint Installation

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

Linux Mint is a popular Linux distribution known for its user-friendly interface and extensive customization options. After a fresh installation, you have a clean system that requires additional software to maximize productivity. This article covers the essential tools you should consider installing on your new Linux Mint system. Package Management Linux Mint includes the Software Manager, a graphical interface for the APT package management system. For command-line users, the apt package manager provides powerful software management capabilities. Basic APT Commands sudo apt update ...

Read More

How to Install “IPFire” Free Firewall Linux Distribution

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

If you're looking for a reliable and robust firewall solution for your network, IPFire might be the answer. IPFire is a free and open-source Linux distribution that provides enterprise-level security features, including a stateful inspection firewall, intrusion detection and prevention, virtual private networking (VPN), and more. In this article, we will guide you through the steps to install IPFire on your network. System Requirements Before we get started, let's make sure that your system meets the minimum requirements for IPFire − A 64-bit processor At least 512 MB of RAM (1 GB recommended) At least 4 ...

Read More

How to download a Tarball from GitHub on Linux?

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

GitHub is an online source code repository and hosting service for open-source projects that provides version control, collaboration, and project management features. Downloading tarballs (compressed archive files) from GitHub allows you to get the source code without cloning the entire repository history. There are several methods to download a tarball from GitHub on Linux systems. The most common approaches use command-line tools like wget and curl to fetch repository archives directly from GitHub's servers. Using wget Command wget is a dedicated non-interactive network download tool that supports HTTP and HTTPS protocols. It's perfect for downloading repository archives ...

Read More

Count lines in a file using Linux bash

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

Counting lines in a file is a fundamental task in Linux system administration and text processing. Whether you're analyzing log files, processing data, or managing configuration files, knowing how to quickly determine the number of lines helps with file size estimation and data analysis. Linux provides several built-in commands to accomplish this task efficiently. Sample File Setup For demonstration, we'll use a text file called programming.txt containing popular programming languages: $ cat programming.txt JavaScript Java C Python C# PHP C++ Go R Ruby This file contains 10 lines. Let's explore different methods to count ...

Read More

Best Tools to Monitor Network Bandwidth on a Linux Server

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

As businesses rely more on digital technology, the need to monitor network bandwidth on a Linux server becomes increasingly important. Keeping an eye on network usage allows administrators to ensure the network is running smoothly and that all users have the bandwidth they need. This article explores the best tools for monitoring network bandwidth on a Linux server. nload nload is a simple yet effective command-line tool for monitoring network bandwidth in real-time. It displays incoming and outgoing traffic separately, along with the total amount of data transferred. This lightweight tool doesn't consume many system resources, making it ...

Read More

How to Use the dmesg Linux Command?

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

The dmesg command is a powerful tool in the Linux command-line arsenal. It stands for "diagnostic message" and is used to read and write data from/to the kernel ring buffer, a data structure that holds messages about the system's hardware, kernel, or driver messages. This article will guide you through the usage of the dmesg command, complete with examples and their outputs. Basic Usage The most basic usage of the dmesg command is to simply type dmesg into your terminal and hit enter. This will display all the kernel messages in your terminal. $ dmesg ...

Read More

How to replace string in a large one line, text file in Linux?

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

Some software reads an entire input file into memory before processing it. If the input file contains a very long single-line string, the software may crash due to insufficient memory to hold the entire string. We'll examine methods to replace strings in very large one-line files in Linux. Since some applications cannot handle extremely large single-line files efficiently, we need specialized approaches that don't load the entire file into memory at once. Target File Modern JavaScript frameworks often compress all code into a single line. Consider a one-line JavaScript file called original.js with an error — it ...

Read More
Showing 431–440 of 937 articles
« Prev 1 42 43 44 45 46 94 Next »
Advertisements