Installing and Using Wget on Linux Like a Pro

In this article, you will explore the power of the wget command, discover the key features of wget, learn how to easily install it on major Linux distributions, and gain hands-on experience with practical examples. Tutorial Details Description Wget Difficulty Level Low Root or Sudo

Installing and Using Curl on Linux Like a Pro

Curl is an amazing open source command-line tool and a library for transferring data with URLs (Uniform Resource Locators). It provides support for 26 protocols and allows you to send requests and retrieve responses through these protocols. The majority of Linux distributions provide curl out

How to Upgrade from Fedora 39 to 40 (CLI + GUI Methods)

Last night, Fedora unveiled its highly anticipated release, Fedora 40 bringing GNOME 46 desktop and upgraded apps, the new KDE Plasma 6.0 desktop is also available, the Linux 6.8 kernel is powering this beast along with GCC 14 and Mesa 24.0 graphics drivers, and a

Beginners Guide for Diff Command in Linux

Today, in this article, you will learn how to use the diff command in Linux to compare the content of two different files or directories to find the changes that are required to make them identical. Tutorial Details Description Comparing Files or Directories Difficulty Level

What is Strip Command and How to Use it?

In this article, you will learn what the strip command is, its usecase, and how to use it to reduce the size of your compiled program. Tutorial Details Description Stripping the Information from Compiled File Difficulty Level Moderate Root or Sudo Privileges No OS Compatibility

How to Install and Use NPX in Linux: A Step-by-Step Guide

You might already be aware of the popular NPM (Node Package Manager) used as a package manager for Node, while NPX (Node Package eXecute), introduced in NPM version 5.2.0 (on August 10, 2017), an NPM package runner, is quite unpopular. In this article, you will

Clean Up Unwanted APT Packages in Linux

New Linux users often install a lot of unnecessary APT packages that they might rarely use in the future. Also, a few bulky distributions come with many pre-installed APT packages. When the Linux system is running low on disk space, it becomes necessary to clean

What is /dev/zero in Linux and its Uses

In this article, you will learn what the “/dev/zero” file is and what its purpose is, but before you understand that, you must know what the special files in Linux are. What are “Special Files” in Linux? In Linux, a “special file” is a type

Mount and Unmount File Systems in Linux

The mount command in Linux is used to mount a file system or removable storage devices like USB flash drives to a specific point in the directory tree, known as the “mount point”. This allows files and directories on the file system or storage device

How to Use lsblk Command on Linux

The lsblk (pronounced “L-S-block”) command is commonly used to get the list of all the block devices in your system with their information, such as size, type, mount point, etc. If you are wondering, what are block devices? Then it’s basically files that represent the

Learn Linux dd Command with 17 Examples

The dd command is a command-line utility that is abbreviated as “Data Definition“, “Data Duplicator“, or “Disk Dump” depending upon the usage, but it’s commonly known as a utility for copying and converting data in Linux. It can copy data from a file or block

Block/Unblock Ping ICMP Requests in the Linux System

Ping is the most commonly used command-line utility used by many sysadmins or network engineers to check whether a target machine is up or down in a given network. We already discussed how this command works in a separate article; click here to read it.