Linux Articles

Page 10 of 134

How to Watch Live Cricket Scores in Linux Terminal using Cricket-CLI?

Prince Yadav
Prince Yadav
Updated on 17-Mar-2026 513 Views

If you are a cricket fan who uses Linux, you may be wondering how to keep track of live cricket scores on your terminal. Fortunately, there is a solution that can provide you with live updates without leaving the command line interface: Cricket-CLI. In this tutorial, we will show you how to use Cricket-CLI to watch live cricket scores in your Linux terminal. We will walk you through the installation process, explain how to use the tool, and even show you how to customize it to suit your preferences. What is Cricket-CLI? Cricket-CLI is a command-line interface ...

Read More

Install and use 7zip on Linux

Prince Yadav
Prince Yadav
Updated on 17-Mar-2026 28K+ Views

Linux is a popular open-source operating system that offers many advantages, such as being free, customizable, and secure. One of the challenges that Linux users face is finding the right tools for certain tasks, such as compressing and decompressing files. Fortunately, 7zip is a powerful and versatile compression tool that can help us with this task. In this tutorial, we will walk through the process of installing and using 7zip in Linux. We will cover different ways to install 7zip, including via the command line and package manager, and provide step-by-step instructions. We will also explain the basic usage ...

Read More

Kill Processes in Linux using Fkill

Prince Yadav
Prince Yadav
Updated on 17-Mar-2026 1K+ Views

Fkill is a versatile and user-friendly command-line tool that simplifies the process of managing and terminating processes on Linux systems. Its intuitive interactive interface enables efficient process management and system troubleshooting. One of the unique features of Fkill is its ability to terminate processes by their name, Process ID (PID), or port number. This flexibility helps identify and terminate stubborn processes that refuse to close, resulting in improved system performance. Installation Fkill is installed via npm (Node.js package manager). Use the following command: sudo npm install -g fkill-cli The installation will display output ...

Read More

Linux sdiff Command Examples

Prince Yadav
Prince Yadav
Updated on 17-Mar-2026 809 Views

The sdiff command is a powerful Linux utility that provides side-by-side file comparison with interactive merging capabilities. Unlike traditional diff commands that show differences vertically, sdiff displays files in parallel columns, making it easier to visualize changes and identify discrepancies between two files. This command is particularly useful for system administrators, developers, and anyone who needs to compare configuration files, source code, or text documents. The interactive nature of sdiff allows users to selectively merge changes, creating a unified output file based on their preferences. Syntax The basic syntax for the sdiff command is: sdiff ...

Read More

Linux stat Command with Examples

Prince Yadav
Prince Yadav
Updated on 17-Mar-2026 923 Views

The stat command in Linux is a powerful tool for retrieving detailed information about files and file systems. It displays comprehensive data including file permissions, timestamps, ownership, inode numbers, and filesystem properties. This command proves invaluable for system administration, troubleshooting, and security analysis. Basic File Information The most common usage displays complete file metadata − $ stat /var/log/syslog File: /var/log/syslog Size: 602244 Blocks: 1200 IO Block: 4096 regular file Device: 803h/2051d Inode: 175419 ...

Read More

Linux who Command with Examples

Prince Yadav
Prince Yadav
Updated on 17-Mar-2026 3K+ Views

The Linux who command is a fundamental system utility that displays information about users currently logged into the system. It shows login names, terminal devices, login times, and remote host information. This command is essential for system administrators to monitor active user sessions and track system access. Basic Usage The simplest form of the who command displays all currently logged-in users: who user1 pts/0 2021-12-20 10:01 (192.168.1.100) user2 pts/1 2021-12-20 10:03 (192.168.1.101) admin ...

Read More

Linux zcat Command with Examples

Prince Yadav
Prince Yadav
Updated on 17-Mar-2026 5K+ Views

The zcat command in Linux is a tool for displaying the contents of compressed files in the gzip format. It functions like the cat command but is specifically designed for working with compressed files. The command reads compressed files and outputs their uncompressed content to standard output without modifying the original compressed file. Syntax zcat [options] file.gz [file2.gz ...] Basic Usage To view the contents of a compressed file, use the following command − zcat example.txt.gz This displays the uncompressed contents of example.txt.gz directly in the terminal without extracting the ...

Read More

Lossless Real-Time Data Compression with Zstandard (zstd)

Prince Yadav
Prince Yadav
Updated on 17-Mar-2026 4K+ Views

Zstandard (zstd) is a high-performance, lossless data compression algorithm developed by Yann Collet. It provides excellent compression ratios while maintaining fast compression and decompression speeds, making it ideal for real-time data processing. Zstd is open-source and supports various data types including text, images, audio, and video files across multiple platforms including Linux, Windows, macOS, and FreeBSD. The algorithm uses advanced techniques like entropy coding and dictionary compression to achieve superior performance compared to traditional compression methods. Its adaptive nature allows it to optimize compression based on data patterns, making it particularly effective for repetitive data structures. Key Features ...

Read More

MOSINT – OSINT Tool for Emails in Kali Linux

Prince Yadav
Prince Yadav
Updated on 17-Mar-2026 6K+ Views

MOSINT is an advanced Open Source Intelligence (OSINT) tool specifically designed for email investigations within the Kali Linux environment. This powerful Python-based tool enables security professionals and ethical hackers to extract valuable insights from email addresses through passive reconnaissance, information gathering, and breach detection. MOSINT leverages the robust foundation of Kali Linux's pre-installed security tools to facilitate comprehensive email intelligence gathering operations. The tool's simplicity and versatility make it an essential component for conducting effective email investigations and enhancing security measures. Installing and Configuring MOSINT MOSINT harnesses the power of Kali Linux, a renowned operating system specifically ...

Read More

MTR – A Network Diagnostic Tool for Linux

Prince Yadav
Prince Yadav
Updated on 17-Mar-2026 377 Views

MTR (My Traceroute) is a powerful network diagnostic tool that combines the functionality of traceroute and ping commands. It provides real-time network path analysis by sending packets to a target host and measuring round-trip times, packet loss, and latency at each hop along the route. Unlike traditional traceroute tools that provide a one-time snapshot, MTR continuously monitors the network path, displaying live statistics in an interactive format. This makes it invaluable for diagnosing network performance issues, identifying bottlenecks, and troubleshooting connectivity problems in Linux environments. How MTR Works MTR sends a series of packets with incrementing TTL ...

Read More
Showing 91–100 of 1,337 articles
« Prev 1 8 9 10 11 12 134 Next »
Advertisements