Tagged articles

Linux

5000 articles · Page 3 of 50
Raymond Ops
Raymond Ops
Jun 10, 2026 · Operations

Practical Guide to Linux Log Management with rsyslog, journald, and logrotate

This article provides a step‑by‑step, production‑ready guide to building a complete Linux logging pipeline using rsyslog, systemd‑journald, and logrotate, covering architecture, configuration, performance tuning, security hardening, troubleshooting, monitoring, backup, and recovery for CentOS 7/8 and Ubuntu 20.04/22.04 environments.

LinuxLog ManagementSystemd
0 likes · 54 min read
Practical Guide to Linux Log Management with rsyslog, journald, and logrotate
Deepin Linux
Deepin Linux
Jun 10, 2026 · Backend Development

Understanding Linux SPI Drivers from Scratch: A Complete Guide

This article explains the Linux SPI driver framework, layering, device‑tree matching, and data‑transfer process, providing clear examples, key APIs, and step‑by‑step instructions to help beginners grasp SPI communication and resolve common development issues.

Device TreeKernel DriverLinux
0 likes · 23 min read
Understanding Linux SPI Drivers from Scratch: A Complete Guide
Linux Tech Enthusiast
Linux Tech Enthusiast
Jun 9, 2026 · Fundamentals

Unlock the Power of ls: 20 Essential Options You Need to Know

This article explains the Linux ls command in depth, covering twenty useful options—from basic listings and long format to sorting, recursive traversal, and displaying hidden files—complete with command examples, output screenshots, and tips for mastering file and directory inspection.

Command LineLinuxUnix utilities
0 likes · 10 min read
Unlock the Power of ls: 20 Essential Options You Need to Know
Raymond Ops
Raymond Ops
Jun 7, 2026 · Operations

Why Can’t kill -9 Remove Zombie Processes? A Step‑by‑Step Guide to Cleaning Orphans

This article explains the Linux zombie and orphan process mechanisms, why kill -9 cannot terminate zombies, how to detect them with ps, top and /proc, and provides practical cleanup methods—including sending SIGCHLD to the parent, killing the parent, batch scripts, container‑specific solutions like tini, and preventive coding techniques—plus systemd handling and monitoring with Prometheus.

LinuxMonitoringProcess Management
0 likes · 32 min read
Why Can’t kill -9 Remove Zombie Processes? A Step‑by‑Step Guide to Cleaning Orphans
IT Services Circle
IT Services Circle
Jun 7, 2026 · Fundamentals

Why Switching Linux Page Size to 2 MiB Can Skyrocket Performance

The article explains how the default 4 KiB pages cause frequent TLB misses, how using 2 MiB huge pages expands a single TLB entry’s coverage by 512×, reduces page‑walk depth and page‑table overhead, and provides C++ examples for both hugetlbfs and Transparent Huge Pages.

C++Huge PagesLinux
0 likes · 7 min read
Why Switching Linux Page Size to 2 MiB Can Skyrocket Performance
MaGe Linux Operations
MaGe Linux Operations
Jun 7, 2026 · Operations

Linux Server Time Sync Best Practices with NTP and chrony

This comprehensive guide explains why accurate timekeeping is critical for Linux servers, compares NTP and chrony, details configuration, troubleshooting, and compliance steps across physical, virtual, container, and Kubernetes environments, and provides ready‑to‑use templates and monitoring recommendations for reliable synchronization.

ChronyDevOpsLinux
0 likes · 40 min read
Linux Server Time Sync Best Practices with NTP and chrony
DeepNoMind
DeepNoMind
Jun 7, 2026 · Operations

Mastering Docker Performance: Multi‑Dimensional Linux Tools for CPU, Memory & I/O Tuning

This article presents a systematic, production‑grade approach to Docker performance tuning, covering bottleneck modeling, multi‑dimensional monitoring with tools such as docker stats, cAdvisor, sysdig and perf, concrete CPU, memory and I/O tuning flags, automated remediation via Prometheus and Ansible, advanced eBPF tracing, and real‑world case studies that demonstrate measurable latency, throughput and cost improvements.

DockerLinuxMonitoring
0 likes · 23 min read
Mastering Docker Performance: Multi‑Dimensional Linux Tools for CPU, Memory & I/O Tuning
Linux Tech Enthusiast
Linux Tech Enthusiast
Jun 7, 2026 · Fundamentals

Linux Basics: All You Need in One Guide

This guide provides a concise overview of Linux fundamentals, covering the OS history, popular distributions, essential keyboard shortcuts, and a comprehensive set of commands for file, disk, network, and system management, each illustrated with syntax and practical examples.

Command LineLinuxNetwork Tools
0 likes · 30 min read
Linux Basics: All You Need in One Guide
ITPUB
ITPUB
Jun 7, 2026 · Operations

Speed Up Log Searching with Powerful Grep Combos: A Live Demo

When a teammate struggled to find errors in massive Java service logs, the author demonstrated a step‑by‑step series of grep tricks—locking time and identifiers, chaining filters, using line numbers, context options, real‑time tailing, recursive search, and shell aliases—to turn chaotic log streams into precise, actionable insights.

Command LineJava loggingLinux
0 likes · 12 min read
Speed Up Log Searching with Powerful Grep Combos: A Live Demo
Raymond Ops
Raymond Ops
Jun 6, 2026 · Operations

How to Recover Files After an rm -rf Accident: 3 Proven Methods

This guide explains why Linux's rm command doesn't truly erase data, describes the two recovery windows (process‑held and un‑overwritten blocks), and walks through three practical recovery methods—using /proc FDs, ext4‑specific tools, and generic carving utilities—while also offering prevention strategies such as trash‑cli, snapshots, and robust backup practices.

LVMLinuxbackup
0 likes · 46 min read
How to Recover Files After an rm -rf Accident: 3 Proven Methods

Microsecond‑Level Sleep: Why thread::sleep Misses Its Target and How to Fix It

On Linux, a call to std::thread::sleep(Duration::from_micros(2)) typically pauses for about 60 µs—30× longer than requested—because the API only guarantees a lower bound and adds a default timer_slack of 50 µs; the article explains the kernel path, shows benchmark data, and provides practical ways to shrink the floor to ~10 µs or achieve sub‑µs latency with busy‑spin and full system tuning.

LinuxRustbusy-spin
0 likes · 21 min read
Microsecond‑Level Sleep: Why thread::sleep Misses Its Target and How to Fix It
Architect Chen
Architect Chen
Jun 6, 2026 · Operations

9 Essential Docker Commands for Live Operations

This guide walks through the nine most frequently used Docker commands for online operations, showing how to list containers, view logs, exec into containers, monitor resource usage, inspect details, manage images, restart services, and clean up unused resources, with practical examples and troubleshooting scenarios.

CLIContainer ManagementDocker
0 likes · 6 min read
9 Essential Docker Commands for Live Operations
Linux Tech Enthusiast
Linux Tech Enthusiast
Jun 6, 2026 · Operations

Top 10 Linux Network Monitoring Tools for Command‑Line Management

This article reviews ten open‑source Linux network monitoring utilities—iftop, vnstat, iptraf, Monitorix, dstat, bwm‑ng, ibmonitor, htop, arpwatch, and Wireshark—explaining their features, typical use cases, and how they help administrators keep the network under control via the terminal.

LinuxWiresharkiftop
0 likes · 8 min read
Top 10 Linux Network Monitoring Tools for Command‑Line Management
Raymond Ops
Raymond Ops
Jun 5, 2026 · Operations

Dual‑Master Nginx + Keepalived Architecture: Eliminate Single Points of Failure

This guide walks through building a dual‑master Nginx + Keepalived high‑availability setup that doubles resource utilization, removes the idle‑backup drawback of traditional active‑passive designs, and provides step‑by‑step configuration, health‑check scripts, failover testing, best‑practice tips, and troubleshooting procedures.

KeepalivedLinuxhigh availability
0 likes · 33 min read
Dual‑Master Nginx + Keepalived Architecture: Eliminate Single Points of Failure
dbaplus Community
dbaplus Community
Jun 4, 2026 · Operations

Why Ops Engineers Still Skip tcpdump? The Command-Line Packet Capture Powerhouse

This hands‑on guide walks you through every practical aspect of using tcpdump—from basic commands and essential filters to saving, reading, advanced flag tricks, performance tuning, security considerations, real‑world case studies, and integration with tools like tshark and Wireshark—so you can capture and analyze network traffic efficiently and safely in production environments.

BPF filtersLinuxPerformance Tuning
0 likes · 22 min read
Why Ops Engineers Still Skip tcpdump? The Command-Line Packet Capture Powerhouse
Linux Tech Enthusiast
Linux Tech Enthusiast
Jun 4, 2026 · Operations

15 Essential Linux Tools to Boost Your Professional Image

This article introduces fifteen Linux utilities—including FSlint, TestDisk, TrueCrypt, BleachBit, and Wine—detailing their core functions such as duplicate file cleaning, data recovery, disk encryption, system cleanup, and Windows application compatibility, helping users appear more proficient in a professional environment.

EncryptionLinuxbackup
0 likes · 6 min read
15 Essential Linux Tools to Boost Your Professional Image
Raymond Ops
Raymond Ops
Jun 3, 2026 · Information Security

Master Linux Permissions: From 777 Pitfalls to Advanced ACL Controls

This comprehensive guide walks you through the evolution of Linux permission models, demonstrates why careless use of 777 can lead to costly breaches, and provides step‑by‑step instructions for using chmod, ACLs, SELinux, AppArmor, and container security to enforce least‑privilege access.

ACLLinuxSELinux
0 likes · 37 min read
Master Linux Permissions: From 777 Pitfalls to Advanced ACL Controls
Ops Community
Ops Community
Jun 3, 2026 · Operations

Full‑Stack Network Packet‑Loss Diagnosis: From ping to tcpdump

This comprehensive guide walks operations engineers through the full stack of network packet‑loss troubleshooting on Linux, covering symptom identification, layer‑by‑layer analysis, key metrics, step‑by‑step commands, common scenarios, advanced tuning techniques, monitoring alerts and FAQs.

LinuxMonitoringconntrack
0 likes · 35 min read
Full‑Stack Network Packet‑Loss Diagnosis: From ping to tcpdump
Linux Tech Enthusiast
Linux Tech Enthusiast
Jun 3, 2026 · Operations

If You Can't Use These Linux Performance Tools, Your Server Is Just a Paperweight

This article provides a comprehensive guide to essential Linux performance and observability commands—such as vmstat, iostat, dstat, iotop, pidstat, top/htop, mpstat, netstat, ps, strace, uptime, lsof, perf, and sar—explaining their purpose, typical usage syntax, and how to interpret their output for effective system monitoring and tuning.

LinuxMonitoringiostat
0 likes · 15 min read
If You Can't Use These Linux Performance Tools, Your Server Is Just a Paperweight
Linux Tech Enthusiast
Linux Tech Enthusiast
Jun 1, 2026 · Fundamentals

Mastering the ls Command: 20 Essential Options You Need to Know

This guide walks through the Linux ls command, explaining its basic behavior and demonstrating 20 useful options—including long listing, human‑readable sizes, sorting, hidden files, recursive listing, and version display—so readers can list files and directories more effectively.

Command LineLinuxfile listing
0 likes · 10 min read
Mastering the ls Command: 20 Essential Options You Need to Know
Architect Chen
Architect Chen
May 31, 2026 · Operations

15 Essential Nginx Commands Explained

This article provides a concise, step‑by‑step guide to the fifteen most frequently used Nginx commands, showing how to check versions, start, stop, reload, test configurations, view logs, monitor connections and ports, and troubleshoot common errors on Linux systems.

ConfigurationLinuxLog Monitoring
0 likes · 6 min read
15 Essential Nginx Commands Explained
MaGe Linux Operations
MaGe Linux Operations
May 31, 2026 · Fundamentals

Essential Network Basics for Ops: IP Addresses, Subnet Masks, and Gateways Explained

This guide walks operations engineers through core networking concepts—including IP address structure, binary‑decimal conversion, private address ranges, subnet masks, CIDR notation, gateway functions, VLAN isolation, routing tables, DNS resolution, Docker/Kubernetes networking, and firewall configuration—while providing concrete command‑line examples and step‑by‑step troubleshooting workflows.

DockerIP addressingKubernetes
0 likes · 35 min read
Essential Network Basics for Ops: IP Addresses, Subnet Masks, and Gateways Explained
Ops Community
Ops Community
May 31, 2026 · Operations

Master Batch Text Processing with awk and sed: A Practical Guide for Sysadmins

This article walks through the fundamentals and advanced techniques of using awk and sed on Linux for batch text manipulation, covering field handling, custom delimiters, BEGIN/END blocks, conditional filtering, arrays, built‑in functions, real‑world Nginx log analysis, script creation, performance tips, common pitfalls, debugging tricks, and how to combine both tools for powerful pipelines.

Linuxawklog analysis
0 likes · 45 min read
Master Batch Text Processing with awk and sed: A Practical Guide for Sysadmins
Deepin Linux
Deepin Linux
May 31, 2026 · Operations

Why Switching Linux Pages from 4KB to 2MB Can Destroy Performance

Changing the default Linux page size from 4KB to 2MB can dramatically increase TLB hit rates but, for typical microservice workloads with many small allocations, it leads to massive internal fragmentation, higher cache‑coherency overhead, and severe latency spikes, ultimately causing overall performance to collapse.

HugePagesLinuxMemory Management
0 likes · 19 min read
Why Switching Linux Pages from 4KB to 2MB Can Destroy Performance
Linux Tech Enthusiast
Linux Tech Enthusiast
May 31, 2026 · Cloud Native

How to Fix Docker Network IP Address Conflicts

When Docker fails to start because its default bridge networks clash with existing subnets, you can diagnose the issue by checking logs and routing tables, then resolve it by adjusting the daemon.json subnet settings, recreating the conflicting networks, and optionally rebuilding the ingress network.

DockerLinuxNetworking
0 likes · 9 min read
How to Fix Docker Network IP Address Conflicts
MaGe Linux Operations
MaGe Linux Operations
May 30, 2026 · Information Security

Master Linux File Permissions: How to Use chmod and chown Effectively

This comprehensive guide explains Linux's permission model, the core concepts of owner, group, and others, demonstrates numeric and symbolic chmod usage, details chown operations, explores special bits, ACLs, common real‑world scenarios, troubleshooting steps, security best practices, and provides scripts for auditing and rollback.

ACLFile PermissionsLinux
0 likes · 36 min read
Master Linux File Permissions: How to Use chmod and chown Effectively
Ops Community
Ops Community
May 30, 2026 · Operations

Master Linux Disk Partitioning and Mounting: A Practical Step‑by‑Step Guide

This guide walks Linux operators through the fundamentals of disk partitioning, explains MBR and GPT partition tables, demonstrates the use of fdisk, parted and gdisk, shows how to create and format filesystems, configure mounting options and fstab, manage LVM volumes, and provides real‑world case studies with commands, examples, and best‑practice recommendations.

Disk PartitioningLVMLinux
0 likes · 35 min read
Master Linux Disk Partitioning and Mounting: A Practical Step‑by‑Step Guide
MaGe Linux Operations
MaGe Linux Operations
May 29, 2026 · Operations

scp vs rsync: Detailed Usage, Parameters, and When to Choose Each for Server File Transfers

This comprehensive guide explains the principles, syntax, and common options of scp and rsync, compares their features with concrete performance data, walks through dozens of real‑world scenarios—from single‑file uploads to large‑scale log migrations—and provides security tips, error‑handling tricks, and best‑practice recommendations for reliable server‑to‑server file transfers.

Linuxbandwidth limitfile transfer
0 likes · 33 min read
scp vs rsync: Detailed Usage, Parameters, and When to Choose Each for Server File Transfers
Linux Tech Enthusiast
Linux Tech Enthusiast
May 29, 2026 · Fundamentals

600 Essential Linux Commands Every Sysadmin Should Know

The article compiles a comprehensive list of 600 Linux commands covering system information, file and directory operations, permissions, searching, mounting, disk management, user and group handling, networking, package management, backup, and editing, providing concise usage examples for each command.

Command LineLinuxUnix
0 likes · 41 min read
600 Essential Linux Commands Every Sysadmin Should Know
Tech Stroll Journey
Tech Stroll Journey
May 27, 2026 · Operations

How to Evaluate Linux Network Performance: Stop Guessing and Use Data

This article explains a reproducible Linux network performance assessment covering latency, throughput, bandwidth, and packet loss, introduces built‑in and benchmark tools such as ping, ss, nstat, ethtool, iperf3, netperf and wrk, and provides a step‑by‑step workflow to generate a complete evaluation report.

LinuxNetwork PerformanceThroughput
0 likes · 9 min read
How to Evaluate Linux Network Performance: Stop Guessing and Use Data
MaGe Linux Operations
MaGe Linux Operations
May 27, 2026 · Operations

Master Linux Directory Structure Quickly: A Practical Guide for Ops Engineers

This guide explains why understanding the Linux filesystem hierarchy matters, walks through the FHS standard, details the purpose of each top‑level directory such as /bin, /usr, /etc, /var, /proc, and provides concrete commands and troubleshooting tips so engineers can locate files, edit configurations, and resolve issues without getting lost.

FHSLinuxfilesystem
0 likes · 39 min read
Master Linux Directory Structure Quickly: A Practical Guide for Ops Engineers
MaGe Linux Operations
MaGe Linux Operations
May 26, 2026 · Operations

Encountering Nginx 502 Errors? A Step‑by‑Step Guide to Fast Troubleshooting

Nginx 502 Bad Gateway is one of the most frequent operational issues; this article outlines a systematic, layered approach—from checking Nginx error logs and backend service status to network connectivity, resource limits, timeout settings, and permission problems—providing concrete commands, example scenarios, and preventive measures to quickly identify and resolve the root cause.

502DockerLinux
0 likes · 27 min read
Encountering Nginx 502 Errors? A Step‑by‑Step Guide to Fast Troubleshooting
Linux Tech Enthusiast
Linux Tech Enthusiast
May 26, 2026 · Operations

600 Essential Linux Commands to Solve 99% of Everyday Tasks

This article compiles a comprehensive list of about 600 Linux commands covering system information, file and directory management, searching, mounting, disk usage, user and group handling, permissions, special attributes, archiving, package management, networking, and text editing, enabling users to handle the vast majority of routine Linux tasks efficiently.

Command LineLinuxLinux commands
0 likes · 49 min read
600 Essential Linux Commands to Solve 99% of Everyday Tasks
Ops Community
Ops Community
May 25, 2026 · Operations

How to Pinpoint Disk I/O Bottlenecks on Linux with iostat and blktrace

This guide walks you through a step‑by‑step, non‑disruptive workflow for diagnosing high disk I/O on Linux servers using built‑in tools such as vmstat, iostat, iotop, pidstat, lsof and the low‑level tracer blktrace, then shows how to interpret the data, identify common root causes, apply targeted fixes, and verify improvements with fio benchmarks and continuous monitoring.

Disk I/OLinuxPerformance Monitoring
0 likes · 26 min read
How to Pinpoint Disk I/O Bottlenecks on Linux with iostat and blktrace
Tech Stroll Journey
Tech Stroll Journey
May 25, 2026 · Operations

How Linux Sends a Packet: From Process to NIC and the Key Metrics to Watch

The article walks through the Linux packet lifecycle—from the send() system call, through the transport and network layers, to the NIC driver—explaining each step, virtual‑network abstractions, and the essential bandwidth, latency, loss, conntrack, and socket buffer metrics to monitor when problems arise.

Container NetworkingLinuxMetrics
0 likes · 10 min read
How Linux Sends a Packet: From Process to NIC and the Key Metrics to Watch
AI Agent Super App
AI Agent Super App
May 23, 2026 · Operations

Top 10 TCP/UDP Interview Questions Every Network Ops Engineer Must Know

This guide compiles ten high‑frequency interview questions on TCP and UDP, covering core concepts, handshake mechanics, reliability features, congestion control, packet framing issues, SYN‑Flood attacks, and essential Linux commands for inspecting and troubleshooting connections.

Interview QuestionsLinuxSYN Flood
0 likes · 16 min read
Top 10 TCP/UDP Interview Questions Every Network Ops Engineer Must Know
ITPUB
ITPUB
May 23, 2026 · Industry Insights

Why Linux Dominates Servers but Fails on Desktops in China

The article examines why, despite Linux's strong presence on servers, its desktop usage remains minimal in China, attributing the gap to the high complexity and cost of GUI development, user preferences for command‑line interfaces, and entrenched market share advantages of Windows and macOS.

DesktopGUI DevelopmentLinux
0 likes · 5 min read
Why Linux Dominates Servers but Fails on Desktops in China
Tech Stroll Journey
Tech Stroll Journey
May 23, 2026 · Operations

Why D and Z Processes Stall Your CPU: Linux Performance Tuning Guide

The article explains the low‑level reasons why uninterruptible (D) and zombie (Z) processes inflate Linux load average, shows how to identify them with ps, wchan and /proc tools, and provides step‑by‑step diagnostics, handling strategies, kernel and I/O scheduler tweaks, and preventive measures to keep the system responsive.

D stateI/O debuggingLinux
0 likes · 15 min read
Why D and Z Processes Stall Your CPU: Linux Performance Tuning Guide
MaGe Linux Operations
MaGe Linux Operations
May 22, 2026 · Operations

30 Essential Linux Commands Every New Ops Engineer Must Know

This guide walks Linux operations engineers through the 30 most frequently used commands, organized into seven categories, and shows real‑world scenarios, common options, safety warnings, and step‑by‑step examples so newcomers can confidently manage files, monitor systems, troubleshoot networks, handle users, and control services on production servers.

Command LineLinuxMonitoring
0 likes · 58 min read
30 Essential Linux Commands Every New Ops Engineer Must Know
Deepin Linux
Deepin Linux
May 22, 2026 · Backend Development

Mastering the Zero‑Copy Trio: sendfile, mmap, and splice

This article provides a comprehensive, step‑by‑step analysis of Linux zero‑copy mechanisms—sendfile, mmap, and splice—detailing their internal workflows, performance trade‑offs, code examples, and practical selection guidelines for high‑throughput backend development.

Linuxmmapperformance
0 likes · 41 min read
Mastering the Zero‑Copy Trio: sendfile, mmap, and splice
Deepin Linux
Deepin Linux
May 21, 2026 · Fundamentals

From Zero to One: Dissecting the Underlying Principles of Linux File I/O

This article walks through the complete Linux file I/O workflow—from opening, reading, and writing files, to kernel‑level system call execution and the differences among five major I/O models—explaining buffers, caches, blocking vs. non‑blocking modes, and performance‑impacting trade‑offs.

BuffersC programmingFile I/O
0 likes · 42 min read
From Zero to One: Dissecting the Underlying Principles of Linux File I/O
Linux Tech Enthusiast
Linux Tech Enthusiast
May 21, 2026 · Fundamentals

Understanding Linux Kernel’s Four I/O Scheduler Algorithms

The article explains Linux kernel’s four I/O schedulers—Noop, CFQ, Deadline, and Anticipatory—detailing their queue management, merging and sorting mechanisms, priority handling, and hardware‑specific suitability, helping readers choose the appropriate scheduler for spinning disks, SSDs, or database workloads.

Linuxanticipatorycfq
0 likes · 16 min read
Understanding Linux Kernel’s Four I/O Scheduler Algorithms
Go Development Architecture Practice
Go Development Architecture Practice
May 20, 2026 · Operations

10 Essential Linux Ops Tools to Cut 80% of Overtime

This article introduces ten widely used Linux operations tools—Shell, Git, Ansible, Prometheus, Grafana, Docker, Kubernetes, Nginx, ELK Stack, and Zabbix—detailing their functions, typical scenarios, advantages, and concrete usage examples to help engineers streamline daily tasks.

AnsibleDockerELK
0 likes · 9 min read
10 Essential Linux Ops Tools to Cut 80% of Overtime
AI Agent Super App
AI Agent Super App
May 20, 2026 · Operations

Enterprise‑Grade Nginx Configuration: From Binary Install to High‑Concurrency Production Deployment

This guide walks through installing Nginx via package manager or source compilation, explains core roles, provides a production‑ready configuration template, and details reverse proxy, load‑balancing strategies, health checks, high‑concurrency tuning, and HTTPS setup with self‑signed and Let’s Encrypt certificates.

LinuxSSLhigh-concurrency
0 likes · 13 min read
Enterprise‑Grade Nginx Configuration: From Binary Install to High‑Concurrency Production Deployment
Liangxu Linux
Liangxu Linux
May 19, 2026 · Fundamentals

Programming: Memorize or Create? Why Understanding Beats Rote Learning

The author argues that successful programming relies 70% on understanding, 20% on practice, and only 10% on memorization, emphasizing that developers should focus on grasping core concepts, building muscle memory through repeated coding, and using documentation as needed rather than trying to memorize every API.

C++LearningLinux
0 likes · 6 min read
Programming: Memorize or Create? Why Understanding Beats Rote Learning
Linux Tech Enthusiast
Linux Tech Enthusiast
May 19, 2026 · Fundamentals

Add a Progress Bar to Linux cp and mv Commands

This guide shows how to patch coreutils so that the Linux cp and mv commands display a visual progress bar, covering version checks, source download, applying the advcpmv patch, compiling, configuring replacements, and testing the new functionality.

CoreutilsLinuxadvcpmv
0 likes · 3 min read
Add a Progress Bar to Linux cp and mv Commands
IT Services Circle
IT Services Circle
May 19, 2026 · Fundamentals

Which Linux Distribution Is Best for Everyday Use Without Programming?

The article explains why modern Linux desktops are user‑friendly, dispels common misconceptions, and recommends several distributions—Ubuntu and its flavors, Fedora Workstation, and Zorin OS—while highlighting potential pitfalls such as limited native Chinese software, gaming compatibility, driver issues, and advises testing in a VM or live mode before full installation.

DesktopFedoraGaming
0 likes · 5 min read
Which Linux Distribution Is Best for Everyday Use Without Programming?
Ubuntu
Ubuntu
May 19, 2026 · Information Security

Linus Calls Out AI‑Generated Vulnerability Reports Flooding the Linux Security List

AI tools are generating massive, duplicate kernel vulnerability reports that overwhelm Linux maintainers, prompting Linus Torvalds to highlight the issue and the kernel’s new documentation that demands reproducible, verifiable reports, while Ubuntu users are advised to focus on updates rather than chasing every headline.

AILinuxUbuntu
0 likes · 10 min read
Linus Calls Out AI‑Generated Vulnerability Reports Flooding the Linux Security List
dbaplus Community
dbaplus Community
May 18, 2026 · Information Security

One Bash Script, One Weekend: How AI Uncovered a 23‑Year‑Old Linux Kernel Flaw

A simple Bash script run over a weekend by researcher Nicholas Carlini leveraged Claude Opus 4.6 to discover a critical NFSv4 vulnerability that had persisted in Linux kernels since March 2003, prompting Linus Torvalds to announce AI‑driven security as a new normal in the Linux 7.0 release.

AI-assisted Vulnerability DetectionLinuxLinux 7.0
0 likes · 19 min read
One Bash Script, One Weekend: How AI Uncovered a 23‑Year‑Old Linux Kernel Flaw
MaGe Linux Operations
MaGe Linux Operations
May 17, 2026 · Operations

Stop Using ‘ll’: 10 Linux Commands That Can Boost Your Efficiency by 50%

This guide introduces ten essential Linux commands—htop/btop, glances, ncdu, journalctl, ss, tree, watch, xz/zstd/pigz, mtr, and jq—explaining their problem contexts, step‑by‑step usage, risk warnings, and verification methods so you can troubleshoot servers faster and cut routine work time in half.

Command LineLinuxTroubleshooting
0 likes · 55 min read
Stop Using ‘ll’: 10 Linux Commands That Can Boost Your Efficiency by 50%
Black & White Path
Black & White Path
May 17, 2026 · Information Security

From Normal User to Root: Inside the ssh-keysign-pwn Linux Kernel LPE (CVE‑2026‑46333)

The article details the ssh-keysign-pwn vulnerability (CVE‑2026‑46333), explaining its exit‑mm/exit‑files race condition, how ordinary users can steal SSH host keys and /etc/shadow via pidfd_getfd, the affected Linux distributions, exploit steps, mitigation measures, and the broader context of May 2026 kernel security disclosures.

CVE-2026-46333Linuxkernel
0 likes · 16 min read
From Normal User to Root: Inside the ssh-keysign-pwn Linux Kernel LPE (CVE‑2026‑46333)
Java Tech Enthusiast
Java Tech Enthusiast
May 16, 2026 · Industry Insights

Why Supercomputers Choose Linux Over Windows: An In‑Depth Analysis

Supercomputers run exclusively on Linux because its open‑source nature offers unparalleled cost savings, deep customizability, superior scheduling performance, and robust stability and security—advantages that closed‑source systems like Windows and macOS cannot match for massive parallel workloads.

LinuxOperating SystemsSupercomputers
0 likes · 9 min read
Why Supercomputers Choose Linux Over Windows: An In‑Depth Analysis
Linux Tech Enthusiast
Linux Tech Enthusiast
May 16, 2026 · Fundamentals

Beginner-Friendly Guide to Linux Shell Programming

This article provides a step‑by‑step tutorial on Linux shell programming for beginners, covering variable naming rules, string manipulation, script creation, environment variable handling, arithmetic operations, user input, logical and string operators, as well as common file and directory commands, all illustrated with concrete code examples and screenshots.

ArithmeticLinuxScripting
0 likes · 19 min read
Beginner-Friendly Guide to Linux Shell Programming
Deepin Linux
Deepin Linux
May 16, 2026 · Fundamentals

Mastering SMP Multi-Core Out-of-Order Execution to Grasp Linux Concurrency

This article deeply dissects the hardware origins of SMP multi‑core out‑of‑order execution, explains four classic memory‑reordering scenarios, and shows how Linux kernel memory barriers constrain the chaos, enabling developers to reliably reason about and fix complex multi‑core concurrency bugs.

CPULinuxSMP
0 likes · 34 min read
Mastering SMP Multi-Core Out-of-Order Execution to Grasp Linux Concurrency
AI Agent Super App
AI Agent Super App
May 15, 2026 · Operations

One-Click Linux Server Initialization: From Bare Metal to Production-Ready

This guide shares a comprehensive one‑click script that hardens SSH, configures firewalls, tunes kernel parameters, manages logs, disables unused services, installs essential tools and Docker, and provides a verification checklist to turn a fresh Linux server into a production‑grade system.

Linuxautomationinit script
0 likes · 30 min read
One-Click Linux Server Initialization: From Bare Metal to Production-Ready
Linux Tech Enthusiast
Linux Tech Enthusiast
May 14, 2026 · Operations

9 Visual Guides to Linux Performance Tuning Tools

The article presents nine diagrams that illustrate Linux performance tooling categories—including observability, static analysis, benchmarking, tuning, sar, perf-tools, tracing, and BPF tools—providing a quick visual reference for system engineers.

BPFLinuxObservability
0 likes · 2 min read
9 Visual Guides to Linux Performance Tuning Tools
Deepin Linux
Deepin Linux
May 14, 2026 · Operations

How to Diagnose Kernel Panic: A Step‑by‑Step Guide to Finding the Root Cause

This article explains what a Linux kernel panic is, enumerates common hardware and driver causes, walks through the panic() function internals, and provides a practical troubleshooting workflow with log analysis, debugging tools, and a concrete driver example to help operators quickly locate and fix the underlying fault.

DebuggingKernel PanicLinux
0 likes · 24 min read
How to Diagnose Kernel Panic: A Step‑by‑Step Guide to Finding the Root Cause
MaGe Linux Operations
MaGe Linux Operations
May 13, 2026 · Operations

Solve System Issues Fast with Linux Log Analysis

This guide walks Linux operators through the core log architecture, essential log files, powerful command‑line tools such as grep, awk, sed and journalctl, and step‑by‑step troubleshooting scenarios—including SSH connectivity, service failures, disk space, memory leaks, security incidents, and application logs—while providing ready‑to‑run scripts and advanced techniques for automated and centralized log analysis.

LinuxTroubleshootingawk
0 likes · 41 min read
Solve System Issues Fast with Linux Log Analysis
IT Services Circle
IT Services Circle
May 13, 2026 · Industry Insights

Why Do Supercomputers Choose Linux Over Windows?

The article explains that Linux dominates the TOP500 supercomputer list because its open‑source nature allows cost‑free licensing, deep kernel customization, extreme flexibility, superior task scheduling, minimal system overhead, and rapid community‑driven security patches, advantages that Windows and macOS cannot match for massive parallel workloads.

LinuxOperating SystemsSupercomputers
0 likes · 8 min read
Why Do Supercomputers Choose Linux Over Windows?
Deepin Linux
Deepin Linux
May 13, 2026 · Fundamentals

Don’t Claim Linux Memory‑Tuning Skills Without Mastering Memory Compaction

This article explains Linux memory compaction—from its core principles and page‑migration mechanics to the different compaction strategies, trigger conditions, practical test cases, and optimization tips—showing how proper compaction resolves fragmentation, improves allocation success, and boosts overall system performance.

LinuxMemory CompactionPage Migration
0 likes · 47 min read
Don’t Claim Linux Memory‑Tuning Skills Without Mastering Memory Compaction
AI Architecture Path
AI Architecture Path
May 13, 2026 · Fundamentals

Ghostty: 54K‑Star Terminal Faster Than Alacritty, Richer Than iTerm2, Beginner‑Friendly

Ghostty, the open‑source terminal emulator that has amassed over 54 000 GitHub stars, combines Alacritty’s ultra‑fast performance with iTerm2’s rich feature set, offers cross‑platform native support, and provides step‑by‑step installation, configuration, and advanced usage tips for macOS and Linux users.

AlacrittyGhosttyLinux
0 likes · 11 min read
Ghostty: 54K‑Star Terminal Faster Than Alacritty, Richer Than iTerm2, Beginner‑Friendly
AI Agent Super App
AI Agent Super App
May 12, 2026 · Operations

Run Linux on Your Phone with Termux: Turn Any Android Device into a Pocket Server

This guide shows how to install Termux from the official GitHub releases, update its package sources, add essential development tools, access Android storage, run Python scripts, connect to remote servers via SSH, and extend functionality with tmux, proot‑distro and other utilities, turning a phone into a fully functional Linux environment.

AndroidLinuxPython
0 likes · 11 min read
Run Linux on Your Phone with Termux: Turn Any Android Device into a Pocket Server
Deepin Linux
Deepin Linux
May 12, 2026 · Backend Development

From Zero to One: Mastering Linux NAPI High‑Concurrency Packet Reception

This article explains why traditional interrupt‑driven network I/O stalls under high traffic, introduces the NAPI (New API) mechanism that combines interrupt wake‑up with batch polling, details its core data structures and scheduling functions, and provides step‑by‑step configuration and tuning guidance to achieve efficient, low‑latency packet processing on Linux servers.

LinuxNAPINetworking
0 likes · 35 min read
From Zero to One: Mastering Linux NAPI High‑Concurrency Packet Reception
Ops Community
Ops Community
May 11, 2026 · Operations

Production‑Grade Linux Disk I/O Tuning: From Theory to Hands‑On Practice

This comprehensive guide walks you through the fundamentals of Linux disk I/O performance, explains how to interpret key metrics such as IOPS, throughput and latency, and provides step‑by‑step instructions, scripts and configuration examples for diagnosing bottlenecks, optimizing filesystems, kernel parameters, application settings and storage layouts in production environments.

Disk I/OLinuxMonitoring
0 likes · 60 min read
Production‑Grade Linux Disk I/O Tuning: From Theory to Hands‑On Practice
dbaplus Community
dbaplus Community
May 10, 2026 · Operations

Ubuntu Breaks 35 Years of Linux Philosophy: Should You Adopt Snap Devpacks?

Ubuntu 26.04 LTS introduces Snap Devpacks—a single‑command, vendor‑controlled toolchain that promises the fastest Linux developer environment deployment, but raises concerns about lock‑in, prompting a detailed comparison with alternatives like mise, Nix devShells, DNF modules and container‑based setups.

CanonicalDevpacksLinux
0 likes · 14 min read
Ubuntu Breaks 35 Years of Linux Philosophy: Should You Adopt Snap Devpacks?
AI Agent Super App
AI Agent Super App
May 10, 2026 · Information Security

From Scapegoat to Security Pro: A Linux User Management Pitfalls Guide

This guide walks through Linux user management fundamentals—core files, user creation, modification, deletion, login processes, password policies, audit logs, and anti‑brute‑force measures—highlighting common mistakes and practical safeguards to harden server security.

LinuxUser Managementfail2ban
0 likes · 13 min read
From Scapegoat to Security Pro: A Linux User Management Pitfalls Guide
Deepin Linux
Deepin Linux
May 10, 2026 · Fundamentals

Do You Really Understand pthread Internals? Master Linux Multithreading Basics

This article dives deep into Linux pthread fundamentals, covering process‑vs‑thread concepts, the POSIX API, kernel implementation via the clone syscall, thread lifecycle, synchronization primitives, common pitfalls such as deadlocks, stack overflows and thread leaks, and provides practical debugging and mitigation techniques with real code examples.

DeadlockLinuxThread Synchronization
0 likes · 55 min read
Do You Really Understand pthread Internals? Master Linux Multithreading Basics
Ops Community
Ops Community
May 9, 2026 · Operations

Achieve Seamless Nginx High Availability with Keepalived: A Practical Guide

This article walks through building a simple, cost‑effective high‑availability solution for Nginx using Keepalived’s VRRP‑based VIP failover, covering environment setup, configuration of master and backup nodes, health‑check scripts, testing procedures, troubleshooting tips, and rollback steps.

FailoverKeepalivedLinux
0 likes · 29 min read
Achieve Seamless Nginx High Availability with Keepalived: A Practical Guide
AI Agent Super App
AI Agent Super App
May 9, 2026 · Operations

Mastering Linux Help Commands: A Complete Guide to man, help, info, and --help

This article breaks down the four primary Linux help mechanisms—man, help, info, and the --help option—explaining their syntax, common options, usage scenarios, differences, personal workflow tips, and troubleshooting tricks so readers can confidently consult the right documentation for any command.

Command LineHelp CommandInfo Documentation
0 likes · 8 min read
Mastering Linux Help Commands: A Complete Guide to man, help, info, and --help
Black & White Path
Black & White Path
May 9, 2026 · Information Security

AutoPentestX: An Automated Linux Penetration Testing Toolkit for Faster Red‑Team Assessments

AutoPentestX is an open‑source, Linux‑focused automated penetration testing framework that integrates tools like Nmap, Nikto, SQLMap and Metasploit into a single command workflow, stores results in SQLite, generates detailed PDF reports, and includes installation, usage instructions, legal compliance notes, and future development plans.

LinuxMetasploitNmap
0 likes · 7 min read
AutoPentestX: An Automated Linux Penetration Testing Toolkit for Faster Red‑Team Assessments
Linux Tech Enthusiast
Linux Tech Enthusiast
May 9, 2026 · Information Security

Xubuntu Download Page Hijacked with Crypto‑Stealing Malware

A security researcher discovered that the official Xubuntu download page was compromised, delivering a ZIP containing a tos.txt file with a bogus 2026 copyright and a malicious Windows executable that functions as a crypto‑clipper, prompting Xubuntu to temporarily disable the download site while investigating the breach.

Crypto ClipperLinuxWebsite Hack
0 likes · 3 min read
Xubuntu Download Page Hijacked with Crypto‑Stealing Malware
dbaplus Community
dbaplus Community
May 8, 2026 · Operations

Why Debian Beats Ubuntu as the Ideal Daily‑Driver Linux Distro

The article compares Debian and Ubuntu, showing how Debian’s community‑driven purity, stable release model, broad hardware support, flexible desktop choices, classic APT packaging, and strong community make it a superior daily‑driver Linux distribution.

APTDebianFree Software
0 likes · 10 min read
Why Debian Beats Ubuntu as the Ideal Daily‑Driver Linux Distro
AI Agent Super App
AI Agent Super App
May 7, 2026 · Operations

Linux Time Drift Can Crash Clusters – A Rescue Guide to Save Your Ops

A 47‑second clock skew once broke MySQL replication, Redis clustering, and Kubernetes scheduling, prompting a three‑year deep‑dive into Linux time services, from hardware clocks to chrony configuration, with practical commands, pitfalls, monitoring, and a checklist to keep production systems in sync.

ChronyLinuxNTP
0 likes · 12 min read
Linux Time Drift Can Crash Clusters – A Rescue Guide to Save Your Ops
Deepin Linux
Deepin Linux
May 7, 2026 · Operations

Don’t Claim You Can Troubleshoot Networks Until You Understand Packet Loss

This article explains what network packet loss is, its common causes—from hardware faults to congestion and misconfiguration—and provides a step‑by‑step, production‑ready methodology for diagnosing and resolving loss using tools such as ping, traceroute, Wireshark and tcpdump.

LinuxTCP/IPTroubleshooting
0 likes · 31 min read
Don’t Claim You Can Troubleshoot Networks Until You Understand Packet Loss
Liangxu Linux
Liangxu Linux
May 6, 2026 · Fundamentals

What’s the Ideal Learning Path for Embedded Software Development?

The article outlines a step‑by‑step learning roadmap for embedded software engineers, emphasizing the need to define goals, master C and hardware basics, understand RTOS and Linux, build hands‑on projects, develop debugging skills, and commit to continuous learning.

C programmingLinuxRTOS
0 likes · 5 min read
What’s the Ideal Learning Path for Embedded Software Development?
Ops Community
Ops Community
May 6, 2026 · Operations

Step‑by‑Step Debugging of a Slow Website: From Nginx to the Database

When a website’s response time jumped from 200 ms to over 10 seconds, this guide walks through a layered investigation—from confirming the scope, checking Nginx and upstream health, analyzing application logs, inspecting MySQL processes, slow queries, and locks, to examining server CPU, memory, disk I/O, and network—providing concrete commands, expected outputs, and root‑cause patterns for effective troubleshooting and preventive monitoring.

LinuxMySQLTroubleshooting
0 likes · 34 min read
Step‑by‑Step Debugging of a Slow Website: From Nginx to the Database
Ubuntu
Ubuntu
May 6, 2026 · Industry Insights

Linus Confirms AI Is Driving a Surge in Linux 7.1‑rc2 Patches

Linus Torvalds announced Linux 7.1‑rc2, noting an unprecedented rise in patch volume largely attributed to AI‑assisted development tools, while also detailing the KVM self‑test rename surge, five major bug‑fixes, the AI‑generated patch debate, the release timeline, and practical upgrade paths for Ubuntu users.

AILinuxUbuntu
0 likes · 9 min read
Linus Confirms AI Is Driving a Surge in Linux 7.1‑rc2 Patches
AI Agent Super App
AI Agent Super App
May 6, 2026 · Operations

Mastering Linux Shell Scripting: A Complete Hands‑On Guide from Basics to Pro

This article walks readers through the fundamentals of Linux shell scripting—explaining what a script is, why automation matters, core syntax, variables, conditionals, loops, functions, real‑world examples, debugging techniques, and best‑practice recommendations—so they can write reliable Bash scripts from scratch and advance to more complex automation tasks.

DebuggingLinuxShell scripting
0 likes · 12 min read
Mastering Linux Shell Scripting: A Complete Hands‑On Guide from Basics to Pro
Deepin Linux
Deepin Linux
May 6, 2026 · Fundamentals

Master Linux Memory Performance: From Theory to Real‑World Optimization

This article systematically breaks down Linux's core memory mechanisms, identifies common performance bottlenecks, and demonstrates how to use tools like numastat, perf, and Valgrind together with kernel parameters such as swappiness and min_free_kbytes to achieve practical memory optimizations.

HugePagesLinuxMemory
0 likes · 55 min read
Master Linux Memory Performance: From Theory to Real‑World Optimization
ITPUB
ITPUB
May 5, 2026 · Operations

Auto‑Show CPU, Memory, and Disk Usage on Linux Login with a Single Script

This article provides a ready‑to‑use Bash script that, when placed in a system‑wide or user profile directory, automatically displays hostname, uptime, load average, IP address, CPU and memory usage, and disk mount statistics each time you log into a Linux server, along with color‑coded formatting and customization tips.

LinuxShell scriptautomation
0 likes · 6 min read
Auto‑Show CPU, Memory, and Disk Usage on Linux Login with a Single Script
Linux Tech Enthusiast
Linux Tech Enthusiast
May 5, 2026 · Fundamentals

100‑Slide PPT That Fully Explains Common Linux Commands

This article shares a 100‑page slide deck that systematically introduces and explains the most frequently used Linux commands, helping readers quickly grasp essential command‑line operations; it covers navigation, file manipulation, process control, permission management, networking utilities, and scripting basics, each illustrated with concise examples and usage tips.

Command LineLinuxPPT
0 likes · 1 min read
100‑Slide PPT That Fully Explains Common Linux Commands
Deepin Linux
Deepin Linux
May 5, 2026 · Fundamentals

Master Linux Memory Performance with HugePages

Linux’s default 4 KB pages cause massive page tables and TLB misses in high‑memory workloads; this article explains the HugePage mechanism, its types, how it reduces page‑table entries, improves TLB hit rates, lowers fragmentation, and provides step‑by‑step configuration for static and transparent huge pages in production.

HugePagesLinuxPerformance Tuning
0 likes · 39 min read
Master Linux Memory Performance with HugePages
Ops Community
Ops Community
May 4, 2026 · Information Security

Investigating and Securing a Server After a Suspicious Login

When a production server shows unexpected high CPU usage and unknown login activity, this guide walks Linux ops engineers through confirming intrusion, stopping the attacker, tracing the attack path, removing backdoors, restoring system integrity, and applying hardening measures to prevent future breaches.

LinuxRootkit Detectionforensics
0 likes · 27 min read
Investigating and Securing a Server After a Suspicious Login