Tagged articles
5000 articles
Page 4 of 50
Linux Tech Enthusiast
Linux Tech Enthusiast
Dec 29, 2025 · Fundamentals

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

This article provides a comprehensive guide to the Linux ls command, explaining its basic purpose and demonstrating twenty useful options—including long listing, human‑readable sizes, sorting, hidden files, recursive listing, and version display—complete with command examples and screenshot illustrations.

LinuxShellcommand-line
0 likes · 10 min read
Unlock the Power of ls: 20 Essential Options You Need to Know
Deepin Linux
Deepin Linux
Dec 28, 2025 · Fundamentals

Understanding Linux User Stacks: How Threads Manage Memory and Calls

This article explains the role of the Linux user stack in multithreaded programs, covering its memory layout, how each thread gets a private stack, stack frame mechanics, growth and overflow handling, and practical examples of creating and debugging stacks with pthreads and gdb.

LinuxThreadUser Stack
0 likes · 24 min read
Understanding Linux User Stacks: How Threads Manage Memory and Calls
Deepin Linux
Deepin Linux
Dec 27, 2025 · Operations

Master Linux Kernel Stack Tracing: From GDB Basics to Advanced ftrace & eBPF

This practical guide walks you through Linux kernel stack backtracing, covering GDB installation, core dump analysis, handling corrupted stacks, and advanced tracing techniques using ftrace and eBPF, with step‑by‑step commands, code examples, and troubleshooting tips to pinpoint the root cause of crashes.

LinuxeBPFftrace
0 likes · 32 min read
Master Linux Kernel Stack Tracing: From GDB Basics to Advanced ftrace & eBPF
Architect's Guide
Architect's Guide
Dec 27, 2025 · Operations

How Many TCP Connections Can a Single Server Actually Support? Limits, Configurations, and Calculations

This article explains the Linux kernel limits that determine how many files and TCP connections a server can handle, shows how to adjust fs.file-max, soft/hard nofile and fs.nr_open parameters, calculates realistic connection counts based on memory, and discusses client‑side port constraints and practical scaling scenarios.

LinuxNetworkingTCP
0 likes · 15 min read
How Many TCP Connections Can a Single Server Actually Support? Limits, Configurations, and Calculations
Xiao Liu Lab
Xiao Liu Lab
Dec 26, 2025 · Operations

How to Achieve RabbitMQ High Availability with HAProxy: A Step‑by‑Step Guide

This tutorial explains why HAProxy is essential for RabbitMQ clusters, walks through installing HAProxy on Ubuntu, configuring load‑balancing and health‑check parameters, integrating with Java applications, and validating automatic failover to ensure high availability and efficient resource utilization.

HAProxyLinuxRabbitMQ
0 likes · 8 min read
How to Achieve RabbitMQ High Availability with HAProxy: A Step‑by‑Step Guide
Deepin Linux
Deepin Linux
Dec 25, 2025 · Operations

How to Optimize Linux Thread Stack Memory for High‑Concurrency Services

This article explains the fundamentals of Linux thread stack memory, identifies why default stack sizes can cause waste or overflow in high‑concurrency scenarios, and provides practical techniques—including stack‑size tuning, code refactoring, and memory‑mapping—to reduce memory usage and improve service stability.

LinuxMemory OptimizationPOSIX
0 likes · 34 min read
How to Optimize Linux Thread Stack Memory for High‑Concurrency Services
IT Services Circle
IT Services Circle
Dec 24, 2025 · Operations

Master Real‑Time Log Analysis with tail, less, grep, sed & awk

This article teaches backend engineers how to efficiently inspect large production logs using Linux commands such as tail, less, grep, sed, and awk, covering real‑world scenarios like service startup monitoring, bug reproduction, trace‑ID tracing, error frequency counting, noise filtering, time‑window extraction, and malicious IP detection.

GrepLinuxawk
0 likes · 7 min read
Master Real‑Time Log Analysis with tail, less, grep, sed & awk
Linux Tech Enthusiast
Linux Tech Enthusiast
Dec 23, 2025 · Fundamentals

How Many Threads Can a Single Linux Process Create?

The article explains Linux virtual memory layout, shows that a 32‑bit process can create roughly 380 threads due to an 8 MB default stack, while a 64‑bit process can theoretically spawn millions of threads but is constrained by kernel parameters such as threads‑max, pid_max and max_map_count.

LinuxProcess LimitsStack Size
0 likes · 7 min read
How Many Threads Can a Single Linux Process Create?
Deepin Linux
Deepin Linux
Dec 22, 2025 · Fundamentals

Mastering Linux Process Stacks: Theory, Debugging, and Stack Overflow Prevention

This comprehensive guide explains the Linux process stack architecture, stack frame layout, function call mechanics, dynamic growth limits, common pitfalls such as stack overflow and memory leaks, and demonstrates debugging techniques with gdb, pstack, and perf, plus a real‑world C++ example.

C ProgrammingLinuxdebugging
0 likes · 37 min read
Mastering Linux Process Stacks: Theory, Debugging, and Stack Overflow Prevention
Ops Community
Ops Community
Dec 21, 2025 · Information Security

How to Investigate and Harden a Compromised Linux Server: Real-World Case Study

This guide walks through a real incident where a Linux server was hijacked by a mining virus, detailing step‑by‑step emergency response, systematic forensic investigation, cleanup procedures, and hardening measures to prevent future breaches, complete with scripts and best‑practice recommendations.

LinuxRootkitServer Hardening
0 likes · 26 min read
How to Investigate and Harden a Compromised Linux Server: Real-World Case Study
Deepin Linux
Deepin Linux
Dec 21, 2025 · Fundamentals

Unlocking the Linux Kernel: A Beginner’s Roadmap to Core Architecture and Modules

This guide walks readers through the fundamentals of the Linux kernel, explaining its core subsystems, source tree layout, process management, memory handling, file systems, networking, device drivers, debugging tools, and practical learning resources, while providing code examples and command‑line utilities for hands‑on exploration.

Device DriversLinuxModules
0 likes · 54 min read
Unlocking the Linux Kernel: A Beginner’s Roadmap to Core Architecture and Modules
Raymond Ops
Raymond Ops
Dec 20, 2025 · Operations

Master Linux Network Troubleshooting: From Ping to Traceroute

An operations engineer’s step‑by‑step guide walks through identifying network failure symptoms, using ping, traceroute, port checks, DNS validation, advanced interface and firewall analysis, practical case studies, automation scripts, best‑practice SOPs, and preventive checklists to quickly pinpoint and resolve Linux network issues.

LinuxShell Scriptsdiagnostics
0 likes · 11 min read
Master Linux Network Troubleshooting: From Ping to Traceroute
Su San Talks Tech
Su San Talks Tech
Dec 20, 2025 · Databases

Master RedisInsight: Install, Configure, and Use the Ultimate Redis GUI

This guide walks you through RedisInsight—a visual Redis GUI that supports clusters, SSL/TLS, and memory analysis—covering Linux installation, environment variable setup, service startup, Kubernetes deployment via YAML, and core usage such as browsing keys, executing commands, and monitoring performance.

Database GUIInstallationKubernetes
0 likes · 7 min read
Master RedisInsight: Install, Configure, and Use the Ultimate Redis GUI
Su San Talks Tech
Su San Talks Tech
Dec 19, 2025 · Operations

Master Log Debugging with grep, tail, and less: Real‑World Tips

This guide walks you through practical techniques for quickly locating Java NullPointerException traces in plain, rotating, and compressed log files using grep, tail, less, and related options, covering context display, real‑time monitoring, compressed‑log searching, and occurrence counting.

GrepLinuxShell
0 likes · 7 min read
Master Log Debugging with grep, tail, and less: Real‑World Tips
Xiao Liu Lab
Xiao Liu Lab
Dec 18, 2025 · Operations

scp vs rsync: Choose the Right Tool for Fast, Efficient File Transfers

This guide explains the fundamental differences between scp and rsync, outlines their mechanisms, advantages, and drawbacks, provides practical command examples for various scenarios, highlights common pitfalls, and offers a concise comparison table to help operations engineers select the appropriate tool for secure and efficient file transfers.

LinuxOperationsSysadmin
0 likes · 10 min read
scp vs rsync: Choose the Right Tool for Fast, Efficient File Transfers
Raymond Ops
Raymond Ops
Dec 18, 2025 · Information Security

Build an Impenetrable Linux Server: Step‑by‑Step Security Hardening Guide

This comprehensive guide walks you through real‑world intrusion analysis and a multi‑layered hardening strategy for Linux servers, covering SSH security, Fail2Ban, firewalls, iptables, IDS, file integrity monitoring, automated alerts, emergency response, and advanced techniques to create a robust defense.

Fail2banHardeningIDS
0 likes · 15 min read
Build an Impenetrable Linux Server: Step‑by‑Step Security Hardening Guide
Raymond Ops
Raymond Ops
Dec 17, 2025 · Operations

Zero‑to‑Hero Linux Installation: Mastering Partition Strategies

This guide walks you through why proper Linux partitioning matters, presents production‑grade and scenario‑specific layouts, covers hardware checks, BIOS/UEFI settings, step‑by‑step partitioning with fdisk/GPT and LVM, filesystem choices, security hardening, automation scripts, monitoring, and best‑practice tips for a flawless system install.

FilesystemInstallationLVM
0 likes · 16 min read
Zero‑to‑Hero Linux Installation: Mastering Partition Strategies
Top Architect
Top Architect
Dec 17, 2025 · Operations

Turn a Raspberry Pi Zero W into a Tiny Web Server with SSH and Ngrok

This guide explains how to set up a Raspberry Pi Zero W as a miniature Linux server, flash Raspbian Stretch Lite onto an SD card, enable headless SSH access, configure Wi‑Fi, install and run Nginx, and expose the service to the public internet using Ngrok, while also covering useful system optimizations.

LinuxNginxRaspberry Pi
0 likes · 14 min read
Turn a Raspberry Pi Zero W into a Tiny Web Server with SSH and Ngrok
Raymond Ops
Raymond Ops
Dec 16, 2025 · Operations

Boost Linux Performance 30-50%: Full CPU, Memory & Disk I/O Tuning Guide

This guide provides a systematic, multi‑layered approach to Linux performance optimization, covering CPU usage analysis, memory management, disk I/O tuning, kernel parameter tweaks, NUMA and container adjustments, with concrete commands, real‑world case studies, monitoring scripts, and actionable best‑practice checklists.

CPUDisk I/OLinux
0 likes · 14 min read
Boost Linux Performance 30-50%: Full CPU, Memory & Disk I/O Tuning Guide
Ops Community
Ops Community
Dec 16, 2025 · Operations

Mastering Chrony: Fast, Precise Time Sync for Distributed Systems

This guide explains why accurate time synchronization is critical for distributed infrastructures, introduces Chrony as a modern NTP replacement, and provides step‑by‑step preparation, configuration, deployment, monitoring, and troubleshooting procedures—including real‑world case studies and best‑practice recommendations.

LinuxNTPSystem Administration
0 likes · 24 min read
Mastering Chrony: Fast, Precise Time Sync for Distributed Systems
Efficient Ops
Efficient Ops
Dec 15, 2025 · Operations

Mastering nvitop: Interactive NVIDIA GPU Monitoring and Management

This guide introduces nvitop, an interactive NVIDIA‑GPU process viewer and resource manager, explains its key features, shows how to install it via uvx/pipx, demonstrates basic device and process commands as well as the real‑time monitoring mode, and provides troubleshooting tips for common issues.

CLIGPU monitoringLinux
0 likes · 5 min read
Mastering nvitop: Interactive NVIDIA GPU Monitoring and Management
Efficient Ops
Efficient Ops
Dec 14, 2025 · Information Security

Detect and Respond to Linux Server Intrusions with Log Analysis

This guide walks you through using Linux log tools such as last, lastb, grep, and sshd_config to identify suspicious logins, trace malicious IPs, and apply immediate remediation steps for compromised servers, targeting ops engineers and developers.

ForensicsLinuxSSH
0 likes · 8 min read
Detect and Respond to Linux Server Intrusions with Log Analysis
dbaplus Community
dbaplus Community
Dec 14, 2025 · Databases

Mastering SQLite PRAGMA: Boost Performance and Safety on Linux & Windows

This guide explains SQLite's essential PRAGMA commands, compares synchronous modes, distinguishes persistent from session‑level settings, and details key Linux‑Windows differences, providing concrete initialization scripts to optimize speed, reliability, and disk usage.

ConfigurationDatabase PerformanceLinux
0 likes · 10 min read
Mastering SQLite PRAGMA: Boost Performance and Safety on Linux & Windows
Raymond Ops
Raymond Ops
Dec 14, 2025 · Operations

5 Game-Changing One-Liner Shell Commands Every Ops Engineer Should Know

This article shares five practical one‑line Shell commands—covering bulk health checks, rapid log analysis, process ranking, network diagnostics, and precise disk cleanup—each explained with its scenario, inner workings, and real‑world performance impact for production environments.

LinuxOne-linerOps
0 likes · 10 min read
5 Game-Changing One-Liner Shell Commands Every Ops Engineer Should Know
IT Services Circle
IT Services Circle
Dec 14, 2025 · Mobile Development

Unlock AirPods Features on Android & Linux with LibrePods – Open‑Source Reverse‑Engineered Tool

LibrePods is an open‑source project that reverse‑engineers Apple’s proprietary AirPods protocol, enabling Android and Linux users to access native features such as active noise cancellation, ear detection, battery status, and custom transparency modes, with detailed compatibility notes, installation steps, and a public GitHub repository.

AirPodsAndroidBluetooth
0 likes · 5 min read
Unlock AirPods Features on Android & Linux with LibrePods – Open‑Source Reverse‑Engineered Tool
Linux Tech Enthusiast
Linux Tech Enthusiast
Dec 14, 2025 · Fundamentals

Essential Linux Commands You Need Right Now

This guide walks through Linux’s core directory layout, explains the most frequently used commands for file and system management, details permission syntax, and introduces handy Vim editing shortcuts, providing a concise reference for anyone working with Linux environments.

Directory StructureFile PermissionsLinux
0 likes · 5 min read
Essential Linux Commands You Need Right Now
Deepin Linux
Deepin Linux
Dec 14, 2025 · Fundamentals

Why Linux Kernel Memory Layout Is the Hidden Key to Preventing OOM Crashes

This article reveals how Linux kernel memory layout—its partitions, address allocation, and resource scheduling—directly impacts system stability, explains the roles of each memory region, demonstrates common pitfalls like fragmentation and dentry leaks, and provides practical debugging and optimization techniques for developers and operators.

Kernel MemoryLinuxMemory Management
0 likes · 60 min read
Why Linux Kernel Memory Layout Is the Hidden Key to Preventing OOM Crashes
Raymond Ops
Raymond Ops
Dec 13, 2025 · Operations

Boost Linux Server Management: Essential Automation Tools & Scripts

This article explains how Linux system administrators can dramatically improve efficiency and reliability by adopting automation tools like Ansible, Puppet, and SaltStack, along with practical shell and Python scripts for batch operations, scheduled tasks, log analysis, and automated backups.

AnsibleLinuxOps
0 likes · 9 min read
Boost Linux Server Management: Essential Automation Tools & Scripts
dbaplus Community
dbaplus Community
Dec 13, 2025 · Operations

Master Real-Time Log Troubleshooting with Tail, Grep, and Zgrep

Learn how to efficiently locate and analyze Java exceptions and other errors in real-time by combining tail, grep, zgrep, and advanced command-line options, enabling complete stack traces, context preservation, compressed log handling, trend analysis, and performance optimization for faster root-cause identification.

GrepLinuxtail
0 likes · 7 min read
Master Real-Time Log Troubleshooting with Tail, Grep, and Zgrep
Instant Consumer Technology Team
Instant Consumer Technology Team
Dec 12, 2025 · Artificial Intelligence

7 Must‑Try Open‑Source Tools to Supercharge Your Development (AI, UI, and More)

This article curates seven noteworthy open‑source projects—from a Linux‑based Windows app runner and a modern admin dashboard to AI‑focused tools like ComfyUI‑Manager, Claude quickstarts, and real‑time Whisper transcription—providing concise descriptions and direct repository links for developers seeking practical resources.

AIJavaScriptLinux
0 likes · 7 min read
7 Must‑Try Open‑Source Tools to Supercharge Your Development (AI, UI, and More)
Linux Tech Enthusiast
Linux Tech Enthusiast
Dec 12, 2025 · Fundamentals

In‑Depth Guide to Linux’s Text‑Processing Trio: grep, sed, and awk

This comprehensive tutorial explains the three essential Linux text‑processing tools—grep, sed, and awk—covering their core concepts, command‑line options, regular‑expression basics, practical examples, advanced features such as control structures and functions, and a side‑by‑side comparison of their capabilities.

GrepLinuxShell scripting
0 likes · 36 min read
In‑Depth Guide to Linux’s Text‑Processing Trio: grep, sed, and awk
Deepin Linux
Deepin Linux
Dec 12, 2025 · Fundamentals

Unlocking ARM64 Memory: How Virtual Addresses Map to Physical Memory

This article explains the fundamentals of Linux arm64 memory management, covering virtual and physical memory concepts, MMU operation, page table structures, address translation steps, page fault handling, and practical C++ examples for allocation, mapping, and performance optimization using huge pages and pre‑paging techniques.

ARM64LinuxMemory Management
0 likes · 38 min read
Unlocking ARM64 Memory: How Virtual Addresses Map to Physical Memory
Xiao Liu Lab
Xiao Liu Lab
Dec 11, 2025 · Operations

Master SSH: From Basic Connections to Secure, High‑Performance Remote Workflows

This guide explains how SSH evolved from simple remote login to a comprehensive tool for secure server access, efficient command execution, password‑less authentication, advanced configuration, port forwarding for deep‑learning tasks, large‑file transfer strategies, and enterprise‑grade hardening, empowering developers and ops engineers to build reliable, reproducible workflows.

Deep LearningLinuxRemote Development
0 likes · 10 min read
Master SSH: From Basic Connections to Secure, High‑Performance Remote Workflows
Raymond Ops
Raymond Ops
Dec 11, 2025 · Operations

Unlock the Full Power of Linux Permissions: A Complete 12‑Bit Guide for Sysadmins

This article explains why misconfigured Linux permissions cause security incidents, breaks down the 12‑bit permission model—including file type, owner/group/others bits and special SUID, SGID, and sticky bits—provides numeric examples, real‑world case studies, advanced techniques like umask, ACLs, batch changes, and offers best‑practice security recommendations and troubleshooting tips.

ACLLinuxPermissions
0 likes · 10 min read
Unlock the Full Power of Linux Permissions: A Complete 12‑Bit Guide for Sysadmins
IT Services Circle
IT Services Circle
Dec 10, 2025 · Fundamentals

5 Handy Linux Terminal Scripts to Boost Your Productivity

This article showcases five useful Linux terminal scripts—including a persistent date display, remote‑local file comparison, SSHFS directory mounting, an in‑terminal world map, and a quick uninstall command—each explained with commands, usage tips, and screenshots.

LinuxShellsshfs
0 likes · 4 min read
5 Handy Linux Terminal Scripts to Boost Your Productivity
Raymond Ops
Raymond Ops
Dec 9, 2025 · Operations

Master the Must‑Know Linux Commands Every Ops Engineer Needs

This comprehensive guide lists essential Linux commands for file handling, system monitoring, text processing, process control, network troubleshooting, compression, backup, security, and scripting, providing practical examples and interview tips to boost an operations engineer's efficiency and expertise.

LinuxOperationsShell scripting
0 likes · 18 min read
Master the Must‑Know Linux Commands Every Ops Engineer Needs
ITPUB
ITPUB
Dec 9, 2025 · Databases

Mastering SQLite PRAGMA: Optimize Performance and Persistence Across Linux & Windows

This article explains SQLite's PRAGMA commands, compares synchronous modes and WAL settings, distinguishes persistent from session‑level pragmas, and highlights key Linux‑Windows differences, providing practical examples and a step‑by‑step initialization checklist for reliable database operation.

Database PerformanceLinuxPRAGMA
0 likes · 11 min read
Mastering SQLite PRAGMA: Optimize Performance and Persistence Across Linux & Windows
Raymond Ops
Raymond Ops
Dec 8, 2025 · Operations

Mastering the Linux Filesystem Hierarchy: A Complete Guide for Sysadmins

This comprehensive guide explains the Linux Filesystem Hierarchy Standard (FHS), details the purpose and typical contents of each top‑level directory such as /, /bin, /sbin, /usr, /var, /etc, /home, /root, /tmp, /dev, /proc, /sys, /boot and /run, and provides practical sysadmin commands and best‑practice recommendations for managing permissions, mounting strategies, performance tuning and troubleshooting.

Directory HierarchyFHSFilesystem
0 likes · 27 min read
Mastering the Linux Filesystem Hierarchy: A Complete Guide for Sysadmins
21CTO
21CTO
Dec 7, 2025 · Fundamentals

Why Linus Torvalds Defends Windows’ Blue Screen – Hardware Faults Over Software Bugs

As Windows 10 reaches end‑of‑life, the article examines the surge in Linux adoption, the evolution of Windows blue‑screen displays, Linus Torvalds’ surprising defense of the issue, and a detailed video where he and Linus Sebastian build a high‑end open‑source workstation while debating hardware reliability and ECC memory.

BlueScreenECC MemoryHardware Reliability
0 likes · 6 min read
Why Linus Torvalds Defends Windows’ Blue Screen – Hardware Faults Over Software Bugs
Raymond Ops
Raymond Ops
Dec 7, 2025 · Operations

Master Linux System Performance: Top, htop, vmstat, iostat & Advanced Tuning Secrets

This comprehensive guide walks you through Linux system performance monitoring using tools like top, htop, vmstat, iostat, sar, netstat, ps, and free, explains each metric, provides practical shell scripts for real‑time analysis, alerts, and detailed tuning strategies for CPU, memory, disk, and network.

LinuxPerformance MonitoringShell Scripts
0 likes · 34 min read
Master Linux System Performance: Top, htop, vmstat, iostat & Advanced Tuning Secrets
Raymond Ops
Raymond Ops
Dec 5, 2025 · Operations

Master Linux Routing in 3 Days: Proven Ops Secrets from a 10‑Year Veteran

This comprehensive guide walks you through Linux routing fundamentals, static and dynamic route configuration, advanced policy routing, troubleshooting tools, performance tuning, security hardening, and best‑practice case studies, enabling you to become a network specialist in just a few days.

LinuxSysadminTutorial
0 likes · 24 min read
Master Linux Routing in 3 Days: Proven Ops Secrets from a 10‑Year Veteran
Linux Cloud Computing Practice
Linux Cloud Computing Practice
Dec 5, 2025 · Operations

Essential Ceph Command Cheat Sheet for Cluster Management

This guide provides a concise collection of essential Ceph commands for starting services, checking health and status, managing monitors, metadata servers, and OSDs, as well as creating admin users, purging nodes, and handling crush maps, enabling administrators to efficiently operate and troubleshoot a Ceph storage cluster.

CephCluster ManagementLinux
0 likes · 6 min read
Essential Ceph Command Cheat Sheet for Cluster Management
dbaplus Community
dbaplus Community
Dec 4, 2025 · Fundamentals

Exploring Linux Filesystems: VFS, ext2 Superblock, and Inode Access

This article guides readers through Linux file system fundamentals, explaining the role of the virtual file system (VFS), detailed structures of the ext2 superblock, group descriptors, block and inode bitmaps, and provides C code examples for extracting and reading file data directly via inode numbers.

C ProgrammingDisk LayoutExt2
0 likes · 27 min read
Exploring Linux Filesystems: VFS, ext2 Superblock, and Inode Access
Raymond Ops
Raymond Ops
Dec 2, 2025 · Operations

All‑in‑One Linux Init Script: Automate Setup for Rocky, AlmaLinux, Ubuntu, and More

This article introduces a comprehensive shell script that automates initial system configuration—root login, network, hostname, repository, firewall, SELinux, swap, SSH, and more—across dozens of Linux distributions, provides source links, detailed feature tables, version‑specific changelogs, and step‑by‑step usage instructions.

LinuxOpsServer Setup
0 likes · 20 min read
All‑in‑One Linux Init Script: Automate Setup for Rocky, AlmaLinux, Ubuntu, and More
MaGe Linux Operations
MaGe Linux Operations
Dec 2, 2025 · Fundamentals

Why Your Disk Shows Free Space but Files Won’t Write: Mastering Inodes

The article explains how inode exhaustion on Linux filesystems can cause "No space left on device" errors despite available disk space, details inode structure and allocation, provides step‑by‑step diagnostics, monitoring scripts, best‑practice recommendations, and recovery procedures to prevent and resolve inode‑related issues.

FilesystemLinuxdisk space
0 likes · 28 min read
Why Your Disk Shows Free Space but Files Won’t Write: Mastering Inodes
Top Architect
Top Architect
Dec 1, 2025 · Big Data

Master DataX: Fast MySQL‑to‑MySQL Data Synchronization and Incremental Updates

This guide walks you through installing JDK, Python and DataX on Linux, configuring MySQL sources, creating the necessary tables and stored procedures, and using DataX's JSON job definitions to perform both full‑load and incremental data synchronization between two MySQL instances, complete with performance metrics and troubleshooting tips.

DataXETLLinux
0 likes · 16 min read
Master DataX: Fast MySQL‑to‑MySQL Data Synchronization and Incremental Updates
Liangxu Linux
Liangxu Linux
Nov 30, 2025 · Operations

How to Diagnose and Resolve 100% CPU Spikes on Linux Servers in Minutes

When a server’s CPU suddenly hits 100%, this guide shows how to quickly identify the offending process, use tools like top, perf, strace, vmstat, and iostat for deep analysis, set up monitoring and alerts, plan capacity, and apply code and system optimizations to prevent future spikes.

CPULinuxmonitoring
0 likes · 14 min read
How to Diagnose and Resolve 100% CPU Spikes on Linux Servers in Minutes
Open Source Linux
Open Source Linux
Nov 30, 2025 · Operations

How to Diagnose Linux Server Performance Issues in Minutes

A step‑by‑step guide shows how to use Linux commands like top, vmstat, free, iostat, and ss to quickly identify CPU overload, memory pressure, disk I/O bottlenecks, and network port problems, providing a practical cheat sheet for effective server troubleshooting.

LinuxOpsmonitoring
0 likes · 9 min read
How to Diagnose Linux Server Performance Issues in Minutes
Java Tech Enthusiast
Java Tech Enthusiast
Nov 29, 2025 · Operations

Why Did One Pod Trigger 61 Young GCs and a Full GC? A Step‑by‑Step Diagnosis

A developer encountered a sudden CPU spike caused by excessive JVM garbage collection in a single Kubernetes pod, and by using Linux monitoring tools, thread‑ID conversion, jstack analysis, and file transfer techniques pinpointed a flawed Excel export implementation that created massive in‑memory lists, ultimately fixing the issue.

JVMKubernetesLinux
0 likes · 6 min read
Why Did One Pod Trigger 61 Young GCs and a Full GC? A Step‑by‑Step Diagnosis
Liangxu Linux
Liangxu Linux
Nov 29, 2025 · Operations

20 Essential Linux Command Combos Every Sysadmin Must Master

This article presents 20 powerful Linux command combinations, grouped by file management, process monitoring, network diagnostics, log analysis, and system maintenance, each with clear examples, real‑world scenarios, common pitfalls, and practical tips to help administrators troubleshoot and automate daily operations efficiently.

LinuxOperationsSysadmin
0 likes · 13 min read
20 Essential Linux Command Combos Every Sysadmin Must Master
MaGe Linux Operations
MaGe Linux Operations
Nov 28, 2025 · Operations

10 Essential Linux Ops Tools Every Engineer Should Master

This article presents a curated list of ten widely used Linux operations tools, detailing each tool's core functions, typical use cases, key advantages, and real‑world examples, while also providing practical shell and Ansible code snippets to help engineers apply them immediately.

AnsibleDockerGrafana
0 likes · 9 min read
10 Essential Linux Ops Tools Every Engineer Should Master
macrozheng
macrozheng
Nov 28, 2025 · Operations

How Many TCP Connections Can a Single Server Actually Handle?

This article explains the theoretical and practical limits of TCP connections on a Linux server, covering kernel parameters such as fs.file-max, soft/hard nofile and fs.nr_open, memory constraints, client port limits, and step‑by‑step configuration examples to maximize concurrent connections.

LinuxNetworkingTCP
0 likes · 14 min read
How Many TCP Connections Can a Single Server Actually Handle?
Java Web Project
Java Web Project
Nov 28, 2025 · Operations

How to Build a Simple Jenkins‑Maven‑Git CI/CD Pipeline from Scratch

This step‑by‑step guide shows how to set up a three‑server environment with GitLab, Jenkins, and a test machine, configure Git repositories, create a Spring Boot project in IntelliJ, install Maven and SSH Publisher plugins in Jenkins, and automate building, packaging, and deploying a JAR file via SSH while handling cleanup and port conflicts.

GitJenkinsLinux
0 likes · 12 min read
How to Build a Simple Jenkins‑Maven‑Git CI/CD Pipeline from Scratch
Tech Stroll Journey
Tech Stroll Journey
Nov 27, 2025 · Operations

How to Diagnose and Reduce CPU Context Switches on Linux

This guide explains when CPU context switches happen, how to monitor them with vmstat and pidstat, interprets key metrics such as cswch and nvcswch, and provides step‑by‑step analysis techniques for identifying and troubleshooting CPU performance issues on Linux systems.

CPUInterruptsLinux
0 likes · 11 min read
How to Diagnose and Reduce CPU Context Switches on Linux
Architect's Guide
Architect's Guide
Nov 27, 2025 · Databases

Master RedisInsight: Install, Configure, and Use the Redis GUI Tool

This guide introduces RedisInsight, a powerful Redis GUI, and provides step‑by‑step instructions for physical and Kubernetes installations, environment configuration, service startup, and basic usage including Redis setup and UI operations, all illustrated with code snippets and screenshots.

Database ManagementGUIKubernetes
0 likes · 7 min read
Master RedisInsight: Install, Configure, and Use the Redis GUI Tool
Deepin Linux
Deepin Linux
Nov 27, 2025 · Backend Development

How epoll Scales to Millions of Connections Using Red‑Black Trees and Ready Lists

This article explains the inner workings of Linux's epoll mechanism, detailing how red‑black trees manage registered file descriptors and how a ready‑list delivers events in O(1) time, covering core APIs, data structures, insertion‑deletion logic, and the full kernel‑space to user‑space flow.

Event-drivenLinuxNetwork programming
0 likes · 54 min read
How epoll Scales to Millions of Connections Using Red‑Black Trees and Ready Lists
Xiao Liu Lab
Xiao Liu Lab
Nov 26, 2025 · Information Security

Why SecureCRT Fails on New Linux and How to Fix It

After upgrading to recent Linux distributions, SecureCRT often cannot establish SSH connections due to disabled legacy algorithms, but the issue can be resolved by updating SecureCRT or manually enabling modern key‑exchange and host‑key types in its settings.

LinuxSSHSecureCRT
0 likes · 4 min read
Why SecureCRT Fails on New Linux and How to Fix It
NiuNiu MaTe
NiuNiu MaTe
Nov 26, 2025 · Fundamentals

How to Diagnose and Fix 100% CPU Overload with Smart Scheduling

This guide explains how CPU scheduling works, why 100% CPU usage occurs, and provides a step‑by‑step troubleshooting workflow—including monitoring with top/vmstat, identifying offending threads, analyzing stack traces, and applying both quick‑fix and long‑term remediation techniques—to keep systems stable.

CPU schedulingLinuxPerformance debugging
0 likes · 19 min read
How to Diagnose and Fix 100% CPU Overload with Smart Scheduling
Test Development Learning Exchange
Test Development Learning Exchange
Nov 24, 2025 · Operations

20 Essential Linux Commands Every Automation Test Engineer Should Master

This guide compiles the 20 most frequently used Linux commands for automation testing engineers, organized by scenario, to help you efficiently inspect files, manage processes and ports, transfer and compress data, test network services, monitor system resources, handle permissions, schedule tasks, and boost daily productivity.

LinuxShellautomation testing
0 likes · 9 min read
20 Essential Linux Commands Every Automation Test Engineer Should Master
Raymond Ops
Raymond Ops
Nov 24, 2025 · Operations

Essential Linux Network Commands Every Sysadmin Should Know

This guide compiles the most frequently used Linux networking utilities—including ifconfig, ip, ping, route, lsof, netstat, ss, traceroute, nslookup, dig, nmcli, tcpdump, arp, and nmap—detailing their purpose, syntax, key options, and practical examples to help administrators configure interfaces, diagnose connectivity, monitor sockets, and perform security scans.

CLILinuxNetworkCommands
0 likes · 31 min read
Essential Linux Network Commands Every Sysadmin Should Know
Java Architect Handbook
Java Architect Handbook
Nov 24, 2025 · Operations

How to Fix Docker Pull Timeouts with Reliable Chinese Mirror Sources (2025 Update)

This guide explains why Docker pull commands often timeout in China due to outdated foreign registries, lists common invalid mirror configurations, provides three verified mirror URLs for 2025, and walks through editing the daemon.json file, restarting Docker, and testing the setup, while sharing practical troubleshooting lessons.

Cloud NativeDevOpsDocker
0 likes · 7 min read
How to Fix Docker Pull Timeouts with Reliable Chinese Mirror Sources (2025 Update)
Raymond Ops
Raymond Ops
Nov 23, 2025 · Operations

Master Linux Command Line: Detailed Guide to ls, pwd, cd, and More

This comprehensive tutorial walks you through the most common Linux commands—including ls, pwd, cd, mkdir, rmdir, rm, touch, man, cp, cat, less, find, tar, sz, and rz—covering their syntax, key options, practical examples, and visual illustrations to help both beginners and seasoned users master the shell.

LinuxShellSystem Administration
0 likes · 17 min read
Master Linux Command Line: Detailed Guide to ls, pwd, cd, and More
Liangxu Linux
Liangxu Linux
Nov 23, 2025 · R&D Management

Linus Torvalds on Kernel Stewardship, AI, Rust, and Life Beyond Coding

In a candid interview at the Linux Foundation Open Source Summit, Linus Torvalds explains how his role has shifted from hands‑on programming to system‑level stewardship, discusses the impact of AI and Rust on kernel development, and shares personal habits that help him cope with the pressures of maintaining the world’s most complex software project.

AILinuxR&D management
0 likes · 19 min read
Linus Torvalds on Kernel Stewardship, AI, Rust, and Life Beyond Coding
Liangxu Linux
Liangxu Linux
Nov 23, 2025 · Operations

20 Essential Linux Commands Every Ops Engineer Must Master

This article presents twenty indispensable Linux command‑line tools—covering system monitoring, performance analysis, process management, network diagnostics, disk handling, and kernel tuning—explaining their syntax, practical tips, common pitfalls, and how they integrate with modern cloud‑native environments.

LinuxNetwork DiagnosticsOperations
0 likes · 12 min read
20 Essential Linux Commands Every Ops Engineer Must Master
Deepin Linux
Deepin Linux
Nov 23, 2025 · Operations

Uncover the Hidden skb Buffer Bottleneck Causing Linux Network Packet Loss

Discover how the Linux kernel’s skb buffer can silently drop packets despite full NIC utilization, learn the three primary causes—driver ring buffer overflow, kernel queue saturation, and CPU interrupt imbalance—and follow step‑by‑step diagnostics with ethtool, softnet_stat, and sysctl to tune parameters and eliminate this hidden performance killer.

Linuxkernelperformance
0 likes · 36 min read
Uncover the Hidden skb Buffer Bottleneck Causing Linux Network Packet Loss
Tech Stroll Journey
Tech Stroll Journey
Nov 22, 2025 · Operations

How to Maximize Linux Disk I/O Performance: Practical Optimization Techniques

This article walks through a comprehensive set of Linux disk I/O optimizations—including hardware health checks, SSD adoption, RAID configuration, block‑device scheduler tuning, sector size alignment, filesystem selection, swap and huge‑page settings, kernel cache tweaks, third‑party caches, and application‑level strategies—to dramatically improve storage throughput and latency.

Disk I/OFilesystemI/O scheduler
0 likes · 12 min read
How to Maximize Linux Disk I/O Performance: Practical Optimization Techniques
Xiao Liu Lab
Xiao Liu Lab
Nov 22, 2025 · Cloud Native

Install Docker & Docker‑Compose Offline in 30 Seconds on Any Linux Server

This guide shows how to set up Docker Engine and Docker‑Compose on isolated Linux machines without internet access by downloading static binaries, transferring them, and running a ready‑made Bash script that configures, starts, and verifies the installation in just a few steps.

ContainerDockerDocker Compose
0 likes · 6 min read
Install Docker & Docker‑Compose Offline in 30 Seconds on Any Linux Server
Raymond Ops
Raymond Ops
Nov 22, 2025 · Operations

Master Rsync Backup: From Basics to Real-World Deployment

This guide walks through the fundamentals of data backup, explains why backups are essential, and provides a comprehensive tutorial on using Rsync—including its concepts, sync modes, configuration, common options, service deployment, and real‑world scenarios such as push/pull transfers, bidirectional sync, and bandwidth‑limited backups.

BackupLinuxOperations
0 likes · 16 min read
Master Rsync Backup: From Basics to Real-World Deployment
Xiao Liu Lab
Xiao Liu Lab
Nov 21, 2025 · Operations

How to Stop Docker from Eating Your Disk Space: Proven Cleanup Strategies

This guide explains why Docker can rapidly fill storage, shows how to pinpoint the biggest space consumers, and provides tiered, production‑ready cleanup commands, automation scripts, and monitoring setups to keep container environments healthy and efficient.

Container ManagementDisk CleanupDocker
0 likes · 10 min read
How to Stop Docker from Eating Your Disk Space: Proven Cleanup Strategies
Raymond Ops
Raymond Ops
Nov 21, 2025 · Information Security

Mastering OpenSSL: From SSL/TLS Basics to Practical Encryption Commands

This article explains the fundamentals of SSL/TLS, why transport‑layer encryption is essential, and provides a hands‑on guide to using OpenSSL on Linux for symmetric and asymmetric encryption, hashing, password generation, random number creation, and base64 encoding with clear command‑line examples.

Command-lineLinuxOpenSSL
0 likes · 12 min read
Mastering OpenSSL: From SSL/TLS Basics to Practical Encryption Commands
Linux Cloud Computing Practice
Linux Cloud Computing Practice
Nov 21, 2025 · Fundamentals

Master Linux Text Processing with grep, sed, and awk

Learn how Linux’s three classic text‑processing tools—grep for pattern searching, sed for stream editing, and awk for pattern‑action processing—work, including their basic operation flow, command usage, and examples, enabling automated manipulation of file contents without manual editing.

GrepLinuxawk
0 likes · 4 min read
Master Linux Text Processing with grep, sed, and awk
BirdNest Tech Talk
BirdNest Tech Talk
Nov 20, 2025 · Fundamentals

From write() to recv(): Tracing a Packet Through the Linux Kernel

This article walks through every stage a packet undergoes inside the Linux kernel—from the moment an application calls write() or send() to the final recv() call—covering socket handling, routing, ARP/NDP resolution, queuing, NIC offloads, and reassembly with concrete commands and code examples.

LinuxNetworkingPacket Flow
0 likes · 19 min read
From write() to recv(): Tracing a Packet Through the Linux Kernel
Raymond Ops
Raymond Ops
Nov 20, 2025 · Operations

How to Monitor Linux System Performance: CPU, Memory, Disk I/O & Network

This guide explains how to monitor a Linux server’s health by checking CPU load and core count, memory usage, disk I/O statistics, and network traffic with common command‑line tools such as uptime, top, free, iostat, iotop, nload and nethogs, and shows how to interpret the results to identify bottlenecks.

CPUDisk I/OLinux
0 likes · 13 min read
How to Monitor Linux System Performance: CPU, Memory, Disk I/O & Network
Raymond Ops
Raymond Ops
Nov 20, 2025 · Operations

Master Chrony: Fast, Precise Time Sync for Linux Servers

This guide explains the fundamentals of time synchronization, why consistent timestamps are critical for distributed systems, and how Chrony provides a faster, more accurate alternative to traditional NTP, including installation, configuration, client usage, and verification steps for Linux environments.

LinuxNTPSystem Administration
0 likes · 9 min read
Master Chrony: Fast, Precise Time Sync for Linux Servers
21CTO
21CTO
Nov 19, 2025 · Backend Development

Linus Torvalds on AI, Vibe Coding, and the Future of Linux Kernel Development

In a recent interview at the Linux Foundation Open Source Summit, Linus Torvalds shared his nuanced views on AI, the experimental "vibe coding" approach, the rising role of Rust in the kernel, and the challenges and opportunities these technologies present for stable, production‑grade software development.

AILinus TorvaldsLinux
0 likes · 5 min read
Linus Torvalds on AI, Vibe Coding, and the Future of Linux Kernel Development
Raymond Ops
Raymond Ops
Nov 19, 2025 · Operations

Mastering Linux Bridge Management: Concepts, Commands, and Configuration

This guide explains the fundamentals of Linux bridges, their role in linking network interfaces, and provides step‑by‑step instructions for creating, configuring, and managing bridges using brctl, NetworkManager (nmcli), and iproute2 commands across various distributions.

LinuxSystem Administrationbrctl
0 likes · 15 min read
Mastering Linux Bridge Management: Concepts, Commands, and Configuration
Ops Community
Ops Community
Nov 19, 2025 · Operations

Why Are Your TCP Packets Dropping? A 3‑Day Capture Walkthrough to Kernel Parameter Fixes

This guide walks you through diagnosing intermittent TCP packet loss and latency spikes on Linux servers, from initial symptom checks and anti‑pattern warnings to detailed sender‑side, network‑link, and receiver‑side investigations using tcpdump, netstat, ss, and kernel tuning, complete with scripts, best‑practice tables and FAQ.

Kernel ParametersLinuxNetwork Diagnostics
0 likes · 37 min read
Why Are Your TCP Packets Dropping? A 3‑Day Capture Walkthrough to Kernel Parameter Fixes
Raymond Ops
Raymond Ops
Nov 18, 2025 · Operations

How to Optimize Linux Server Performance: Monitoring, Tuning, and Resource Management

This guide explains how to identify performance bottlenecks on Linux servers and improve stability by adjusting kernel parameters, using monitoring tools like vmstat, mpstat, iostat, and sar, and applying resource‑limit techniques such as ulimit, PAM, and cgroups across CPU, memory, disk, and network subsystems.

Linuxoptimizationperformance tuning
0 likes · 39 min read
How to Optimize Linux Server Performance: Monitoring, Tuning, and Resource Management