Delete the History of the Last n Commands on Linux

Satish Kumar
Updated on 17-Mar-2026 09:01:38

13K+ Views

In Linux, the command history is a record of previously executed commands stored in a file called .bash_history, located in each user's home directory. The history command displays this history, and commands are assigned sequential numbers that can be executed using !number syntax. For example, typing !123 will execute the command numbered 123 in the history. There are several options to customize command history behavior: The history -c command clears the current session's command history. The HISTFILE environment variable specifies a different file to store command history. The HISTSIZE and HISTFILESIZE variables control the maximum number of ... Read More

Bandwidth – A Network Bandwidth Utilization Tool for Linux

Satish Kumar
Updated on 17-Mar-2026 09:01:38

1K+ Views

Bandwidth is a crucial factor when it comes to network utilization. It determines the amount of data that can be transmitted through a network connection in a given time frame. Linux provides a range of network tools to monitor and manage bandwidth utilization. Among these tools, Bandwidth is a reliable and versatile command-line utility that helps users monitor and analyze network bandwidth usage on Linux systems. In this article, we will explore the Bandwidth tool, its features, installation process, and usage. We will also discuss practical examples of using Bandwidth to manage and optimize network bandwidth utilization. What ... Read More

8 Types of Linux Shells

Satish Kumar
Updated on 17-Mar-2026 09:01:38

6K+ Views

Linux shells are command-line interfaces that allow users to interact with the operating system through text-based commands. Linux offers a diverse ecosystem of shells, each designed for different use cases and user preferences. In this article, we will explore 8 popular types of Linux shells and their distinctive features. Bash Shell Bash (Bourne-Again SHell) is the most widely used shell in Linux and serves as the default shell in most distributions. It combines the best features of the original Bourne shell with additional enhancements for interactive use and scripting. Key Features: Command history and editing Tab ... Read More

How to Install a Lightweight Bodhi Linux Distro

Satish Kumar
Updated on 17-Mar-2026 09:01:38

1K+ Views

Bodhi Linux is a lightweight, Ubuntu-based Linux distribution that uses the Enlightenment desktop environment, providing a sleek and minimalistic interface. This guide walks through the complete installation process, from system requirements to post-installation setup. System Requirements Before installing Bodhi Linux, ensure your computer meets these minimum requirements − A 64-bit processor At least 512 MB of RAM (1 GB recommended) At least 5 GB of free hard drive space A DVD drive or USB flash drive with at least 2 GB capacity A stable internet connection Downloading Bodhi Linux Download the ISO file ... Read More

Setting Permissions with chown and chmod

Satish Kumar
Updated on 17-Mar-2026 09:01:38

3K+ Views

When working with files and directories in Linux, it's important to understand how to set permissions. Permissions define who can access and modify files and directories on a system. The chown and chmod commands are essential tools for managing ownership and access rights. Understanding Linux File Permissions In Linux, each file and directory has three types of permissions: read (r), write (w), and execute (x). These permissions can be set for three different categories of users − owner of the file or directory, group to which the file or directory belongs, and all other users. ... Read More

Bash-it – Bash Framework to Control Your Scripts and Aliases

Satish Kumar
Updated on 17-Mar-2026 09:01:38

818 Views

Bash-it is a framework designed to manage and enhance your Bash shell configuration. It provides a comprehensive collection of scripts, aliases, plugins, and themes that help streamline your command-line workflow. As developers often rely heavily on the terminal for daily tasks, Bash-it offers an organized way to control and customize your shell environment without the complexity of managing individual configuration files. Installation Installing Bash-it requires Git version control system. Clone the repository to your home directory using the following command − git clone --depth=1 https://github.com/Bash-it/bash-it.git ~/.bash_it After installation, activate Bash-it by adding these lines ... Read More

9 Best Free UPnP and DLNA Media Servers for Linux

Satish Kumar
Updated on 17-Mar-2026 09:01:38

4K+ Views

If you're a Linux user, you might be looking for a free media server to stream your favorite music, videos, and photos to multiple devices. Fortunately, there are several UPnP and DLNA media servers available for Linux, and many of them are completely free. In this article, we'll explore nine of the best free UPnP and DLNA media servers for Linux, and discuss their features and benefits. What are UPnP and DLNA? UPnP (Universal Plug and Play) is a set of networking protocols that allows devices to discover and communicate with each other on a local network. DLNA ... Read More

How to Install Adobe Flash Player 32 on Fedora Linux

Satish Kumar
Updated on 17-Mar-2026 09:01:38

703 Views

Adobe Flash Player was a multimedia software platform used to stream videos, animations, and interactive content on web browsers. While Adobe officially discontinued Flash Player support on December 31, 2020, some legacy systems or specific applications may still require it. This guide covers the installation of Adobe Flash Player 32 on Fedora Linux systems. Important Security Warning: Adobe Flash Player is deprecated and contains known security vulnerabilities. Adobe strongly recommends uninstalling Flash Player from all systems. Use this guide only if absolutely necessary for legacy applications, and consider migrating to modern web standards like HTML5. Prerequisites Before ... Read More

Microsoft's Surface Studio for Creative Professionals

Sharon Christine
Updated on 17-Mar-2026 09:01:38

178 Views

Microsoft's Surface Studio is an elegant all-in-one desktop PC with a built-in touchscreen specifically designed for creative professionals. Microsoft's journey began with PixelSense (formerly called Microsoft Surface) in 2008, followed by the Surface tablet and Surface Book. The Surface Studio represents the latest evolution in this product line. The Studio features a 28-inch display mounted on innovative "zero gravity" hinges that allow it to function as a traditional monitor or tilt down into a drafting table configuration. This versatile design positions Microsoft's Studio as a direct competitor to Apple's iMac and Mac Pro systems. Key Features The ... Read More

Difference between green and native thread

Himanshu shriv
Updated on 17-Mar-2026 09:01:38

1K+ Views

Green threads are threads that are created and scheduled by a virtual machine or runtime environment without using the operating system's threading libraries. They are called "green" after the original codename for the Java thread project developed by Sun Microsystems. Native threads are threads that are created and scheduled directly by the operating system kernel. They utilize the OS's built-in threading support and can take full advantage of system resources including multiple processors. How They Work Green threads operate at the application level, where the virtual machine or runtime manages all thread scheduling. The OS sees only ... Read More

Advertisements