Tagged articles
5000 articles
Page 6 of 50
Deepin Linux
Deepin Linux
Oct 29, 2025 · Operations

Unlock Linux Performance Secrets with SystemTap: A Practical Guide

SystemTap provides Linux developers and administrators a powerful, low‑overhead dynamic tracing solution that lets you monitor kernel and user‑space events, pinpoint performance bottlenecks, debug crashes, and build custom monitoring without rebooting or recompiling, making invisible system issues visible and solvable.

LinuxScriptingSystemTap
0 likes · 32 min read
Unlock Linux Performance Secrets with SystemTap: A Practical Guide
Open Source Linux
Open Source Linux
Oct 29, 2025 · Backend Development

30 Must‑Know Nginx Interview Questions to Ace Your Linux Cloud Job

A comprehensive collection of 30 Nginx interview questions—from basic concepts and commands to advanced performance tuning and high‑availability—organized by difficulty level, each with detailed explanations, best‑practice answers, and ready‑to‑use configuration snippets for Linux cloud engineers.

BackendDevOpsLinux
0 likes · 38 min read
30 Must‑Know Nginx Interview Questions to Ace Your Linux Cloud Job
Tech Stroll Journey
Tech Stroll Journey
Oct 28, 2025 · Operations

Detect and Fix Linux Memory Leaks with memleak and vmstat

This guide explains how Linux memory leaks occur, why they harm system stability, and provides step‑by‑step commands—including top, ps, pmap, vmstat, and the memleak utility—to identify, monitor, and resolve leaking processes efficiently.

Linuxmemleakmemory leak
0 likes · 6 min read
Detect and Fix Linux Memory Leaks with memleak and vmstat
Raymond Ops
Raymond Ops
Oct 28, 2025 · Operations

Master Linux Kernel Tuning: From Theory to Practical Sysctl Configuration

This guide walks system administrators and DevOps engineers through the purpose of key Linux kernel parameters, how to set them temporarily or permanently—including in Docker and Kubernetes—verify their effect, troubleshoot common issues, and apply best‑practice tuning for improved performance and stability.

ContainerLinuxPerformance Tuning
0 likes · 9 min read
Master Linux Kernel Tuning: From Theory to Practical Sysctl Configuration
Liangxu Linux
Liangxu Linux
Oct 27, 2025 · Operations

How Does a Linux Packet Travel from NIC to Your App? Unveiling Zero‑Copy Secrets

This article walks through every stage a network packet undergoes inside the Linux kernel—from hardware interrupt and driver processing, through the sk_buff structures of the TCP/IP stack, to user‑space delivery—while explaining zero‑copy mechanisms like sendfile, splice, mmap and io_uring, and offering concrete tuning commands for optimal performance.

LinuxNetwork Stackkernel
0 likes · 12 min read
How Does a Linux Packet Travel from NIC to Your App? Unveiling Zero‑Copy Secrets
dbaplus Community
dbaplus Community
Oct 27, 2025 · Operations

30 Essential Linux Command Combinations to Supercharge System Administration

This guide presents 30 practical Linux command pipelines—organized into system monitoring, log analysis, file management, process control, network troubleshooting, and security auditing—that let administrators quickly diagnose resource bottlenecks, extract key log data, automate batch operations, and secure servers without writing complex scripts.

LinuxSecurity AuditingShell Commands
0 likes · 33 min read
30 Essential Linux Command Combinations to Supercharge System Administration
MaGe Linux Operations
MaGe Linux Operations
Oct 27, 2025 · Operations

Essential Ops Playbook: Real‑World Linux Tuning & Incident Diagnosis

This article walks ops engineers through a real production incident, explains why deep Linux kernel knowledge is crucial, presents typical high‑traffic, log‑burst, and DB‑slow‑query scenarios, and shares a three‑step practical tuning methodology with code snippets, monitoring scripts, and future‑proof tips such as eBPF and AIOps.

LinuxOperationsSystem Tuning
0 likes · 14 min read
Essential Ops Playbook: Real‑World Linux Tuning & Incident Diagnosis
Raymond Ops
Raymond Ops
Oct 27, 2025 · Operations

Master Linux Network Tuning for High-Concurrency: Practical Guide

This guide walks through a real‑world high‑concurrency Linux scenario, diagnosing TCP state bottlenecks, analyzing default kernel parameters, and providing step‑by‑step sysctl tweaks, queue and buffer adjustments, monitoring scripts, and stress‑test recommendations to dramatically improve connection handling and throughput.

LinuxNetwork TuningPerformance Optimization
0 likes · 9 min read
Master Linux Network Tuning for High-Concurrency: Practical Guide
Deepin Linux
Deepin Linux
Oct 27, 2025 · Operations

Sniffnet: Free Rust‑Based Real‑Time Network Monitor

Sniffnet is a free, Rust‑written network monitoring application that offers real‑time traffic visualization, precise IP and geographic identification, protocol analysis, customizable themes, and exportable PCAP capture files, with step‑by‑step installation guides for Windows, macOS, and Linux, plus optional Npcap support.

LinuxNetwork MonitoringPCAP
0 likes · 6 min read
Sniffnet: Free Rust‑Based Real‑Time Network Monitor
Xiao Liu Lab
Xiao Liu Lab
Oct 27, 2025 · Operations

Why Tcping Beats Ping: Fast Port Probing for Windows and Linux

This guide explains why traditional ping often fails to reveal service issues, introduces Tcping as a reliable TCP‑based port probing tool, and provides step‑by‑step instructions for using it on Windows and Linux, including installation, common parameters, comparison with other utilities, and practical monitoring scripts.

LinuxWindowsnc
0 likes · 8 min read
Why Tcping Beats Ping: Fast Port Probing for Windows and Linux
Liangxu Linux
Liangxu Linux
Oct 26, 2025 · Information Security

Master Linux Security Hardening: Advanced firewalld Rules & SELinux Context Management

This guide presents a production‑tested Linux hardening strategy that combines advanced firewalld zone and rich‑rule configurations with precise SELinux context management, offering step‑by‑step commands, custom scripts, troubleshooting tips, and performance optimizations to protect servers from the majority of common attacks.

LinuxSELinuxautomation
0 likes · 10 min read
Master Linux Security Hardening: Advanced firewalld Rules & SELinux Context Management
Liangxu Linux
Liangxu Linux
Oct 26, 2025 · Information Security

Master Linux Server Intrusion Detection & Rapid Incident Response: A Complete Hands‑On Guide

This comprehensive guide walks Linux administrators through early detection of system anomalies, detailed log analysis, file‑integrity checks, intrusion confirmation, step‑by‑step emergency response, system hardening, preventive monitoring, and essential open‑source security tools, all illustrated with ready‑to‑run Bash scripts.

LinuxSecurity Scriptsincident response
0 likes · 17 min read
Master Linux Server Intrusion Detection & Rapid Incident Response: A Complete Hands‑On Guide
MaGe Linux Operations
MaGe Linux Operations
Oct 25, 2025 · Operations

Master Linux Disk Management & I/O Optimization: Expand and Tune

This comprehensive guide walks you through Linux disk expansion, LVM provisioning, filesystem resizing, I/O scheduler tuning, performance benchmarking with fio, monitoring with Prometheus, security hardening, troubleshooting common disk issues, and best‑practice recommendations for reliable production environments.

I/O optimizationLVMLinux
0 likes · 27 min read
Master Linux Disk Management & I/O Optimization: Expand and Tune
Liangxu Linux
Liangxu Linux
Oct 25, 2025 · Fundamentals

Master Linux Threads: Creation, Control, and Scheduling Explained

This guide explains Linux thread fundamentals, covering definitions, differences from processes, user‑level vs kernel‑level models, creation and termination with pthread APIs, attribute settings, cancellation, cleanup, detaching, and scheduling policies, all illustrated with complete code examples.

LinuxPOSIXScheduling
0 likes · 18 min read
Master Linux Threads: Creation, Control, and Scheduling Explained
Liangxu Linux
Liangxu Linux
Oct 25, 2025 · Operations

One‑Command OS Reinstall: Automate Linux, Windows, and NAS Deployments

The open‑source "reinstall" shell script automates full‑system reinstall for Linux, Windows, and popular NAS platforms, handling hardware detection, network configuration, and disk partitioning with a single command, making VPS and server provisioning fast, secure, and hassle‑free.

LinuxNASOS reinstall
0 likes · 7 min read
One‑Command OS Reinstall: Automate Linux, Windows, and NAS Deployments
Raymond Ops
Raymond Ops
Oct 24, 2025 · Operations

How to Set Up Custom Nginx Monitoring and Triggers in Zabbix 7.2

This guide walks you through installing the zabbix-get service, deploying and starting Nginx, creating a Bash script for status checks, adding a custom UserParameter, validating the items on the Zabbix server, and configuring UI items and triggers to monitor Nginx health.

LinuxZabbixautomation
0 likes · 5 min read
How to Set Up Custom Nginx Monitoring and Triggers in Zabbix 7.2
MaGe Linux Operations
MaGe Linux Operations
Oct 24, 2025 · Operations

Why Did TCP Connections Skyrocket from 15K to 65K? Full Diagnosis and Fix

This postmortem details a production outage caused by a sudden surge of TCP connections from 15 K to 65 K, explains how to reproduce the issue, walks through step‑by‑step diagnostics, root‑cause analysis, and permanent remediation using Linux kernel tuning, connection‑pool configuration, and monitoring alerts.

Connection leakLinuxPerformance Tuning
0 likes · 32 min read
Why Did TCP Connections Skyrocket from 15K to 65K? Full Diagnosis and Fix
Deepin Linux
Deepin Linux
Oct 24, 2025 · Fundamentals

What Really Happens Inside Linux System Calls? A Deep Dive

This article explains Linux system calls as the bridge between user‑space programs and the kernel, covering their purpose, importance, the distinction between user and kernel space, the execution process, classifications, invocation methods, and performance considerations, with clear examples in C.

LinuxSystem CallsUser Space
0 likes · 50 min read
What Really Happens Inside Linux System Calls? A Deep Dive
Ray's Galactic Tech
Ray's Galactic Tech
Oct 23, 2025 · Cloud Native

How to Seamlessly Upgrade Kubernetes from Docker to Containerd

Learn a step‑by‑step process for migrating Kubernetes clusters (v1.24+) from the deprecated Docker runtime to the native Containerd CRI, covering compatibility checks, node preparation, installation, configuration, node draining, kubelet updates, validation, and common pitfalls such as cgroup driver mismatches.

CRICluster MigrationDocker
0 likes · 8 min read
How to Seamlessly Upgrade Kubernetes from Docker to Containerd
Tech Stroll Journey
Tech Stroll Journey
Oct 22, 2025 · Fundamentals

Understanding Linux Swap: How It Works, Tuning Tips, and Common Cleanup Commands

Linux swap provides a disk‑backed memory extension, storing anonymous pages when RAM runs low; this article explains swap’s operation, the kernel’s memory reclamation thresholds, tuning parameters like min_free_kbytes and swappiness, and offers commands to locate high‑swap processes and safely clear swap.

Kernel TuningLinuxMemory Management
0 likes · 7 min read
Understanding Linux Swap: How It Works, Tuning Tips, and Common Cleanup Commands
Advanced AI Application Practice
Advanced AI Application Practice
Oct 22, 2025 · Operations

AI-Powered Linux Disk Cleanup: A Complete Guide

This guide presents an AI‑assisted workflow for Linux disk maintenance, including scripts for rapid diagnosis, risk assessment, personalized cleanup plans, safe log and cache removal, large‑file analysis, interactive cleanup modes, real‑time feedback, automated backups, and a one‑click execution script.

AI automationDisk CleanupLinux
0 likes · 11 min read
AI-Powered Linux Disk Cleanup: A Complete Guide
Deepin Linux
Deepin Linux
Oct 22, 2025 · Operations

Why Your Linux Server Drops Packets and How to Debug It Step‑by‑Step

This article explains why Linux servers can experience mysterious packet loss, walks through a systematic debugging process from the link layer to the kernel TCP/IP stack, and provides practical solutions such as adjusting kernel parameters and increasing listen queue sizes to eliminate the issue.

LinuxPacket LossTCP/IP
0 likes · 58 min read
Why Your Linux Server Drops Packets and How to Debug It Step‑by‑Step
Dunmao Tech Hub
Dunmao Tech Hub
Oct 21, 2025 · Backend Development

How to Compile and Deploy ZLMediaKit for GB28181 Video Services

This guide walks you through installing prerequisites, cloning the ZLMediaKit source, compiling it on Linux, configuring it to work with WVP, and launching the server, plus troubleshooting tips and a Docker deployment alternative for GB28181 video integration.

GB28181LinuxVideo Streaming
0 likes · 7 min read
How to Compile and Deploy ZLMediaKit for GB28181 Video Services
Java Tech Enthusiast
Java Tech Enthusiast
Oct 20, 2025 · Fundamentals

The Untold Story of Richard Stallman: From Free Software to GNU/Linux

The article chronicles Richard Stallman’s obsessive pursuit of software freedom, his life in MIT’s AI Lab, the birth of the GNU project, the clash with proprietary software, the rise of Linux, and the enduring impact of the free‑software movement on modern open‑source development.

Free SoftwareGNULinux
0 likes · 11 min read
The Untold Story of Richard Stallman: From Free Software to GNU/Linux
Deepin Linux
Deepin Linux
Oct 20, 2025 · Fundamentals

How to Detect and Fix C++ Memory Leaks on Linux: Tools, Tips, and Code

This article explains what memory leaks are in C++ on Linux, why they matter, how they occur, and provides practical guidance on detecting them with tools like Valgrind, AddressSanitizer, GDB, and mtrace, followed by concrete solutions such as proper new/delete usage, smart pointers, RAII, custom allocators, and memory pools.

AddressSanitizerC++Linux
0 likes · 39 min read
How to Detect and Fix C++ Memory Leaks on Linux: Tools, Tips, and Code
Liangxu Linux
Liangxu Linux
Oct 19, 2025 · Fundamentals

Master Linux Thread Programming: From Basics to Advanced Control

This article provides a comprehensive guide to Linux threads, covering fundamental concepts, the distinction between processes and threads, user‑level vs kernel‑level threading, thread creation and termination with POSIX APIs, attribute settings, cancellation, cleanup, detachment, scheduling policies, and practical code examples.

LinuxPOSIXThreads
0 likes · 17 min read
Master Linux Thread Programming: From Basics to Advanced Control
Liangxu Linux
Liangxu Linux
Oct 19, 2025 · Operations

Boost Linux Server Throughput: Practical TCP/IP Stack Tuning Guide

This article presents a comprehensive, step‑by‑step guide for Linux network performance optimization, covering real‑world issues, sysctl parameter tweaks for TCP and IP stacks, queue and interrupt tuning, high‑concurrency strategies, monitoring scripts, a detailed e‑commerce case study, best‑practice recommendations, and safety precautions.

BBRLinuxTCP Tuning
0 likes · 13 min read
Boost Linux Server Throughput: Practical TCP/IP Stack Tuning Guide
Liangxu Linux
Liangxu Linux
Oct 19, 2025 · Operations

Boost Linux Network Performance: Proven Techniques to Increase Bandwidth and Reduce Latency

This article provides a comprehensive guide to Linux network performance tuning, covering key metrics, TCP window adjustments, Fast Open, congestion control algorithms, kernel parameter optimizations, zero‑copy transmission, NIC bonding, connection limits, and essential monitoring tools to achieve higher bandwidth and lower latency.

Latency ReductionLinuxTCP Tuning
0 likes · 10 min read
Boost Linux Network Performance: Proven Techniques to Increase Bandwidth and Reduce Latency
MaGe Linux Operations
MaGe Linux Operations
Oct 18, 2025 · Operations

10 Proven Causes of Linux CPU Spikes and How to Diagnose Them Fast

Learn a step‑by‑step Linux CPU high‑usage diagnostic guide covering ten root causes, quick monitoring commands, deep analysis with top, ps, strace, perf, and flamegraphs, plus practical remediation and long‑term monitoring setup using sar and Prometheus to prevent future spikes.

CPULinuxPrometheus
0 likes · 22 min read
10 Proven Causes of Linux CPU Spikes and How to Diagnose Them Fast
Raymond Ops
Raymond Ops
Oct 18, 2025 · Operations

Master Linux Permissions: Root, Users, Groups, chmod & chown Explained

This guide explores Linux system management fundamentals, detailing the role of the root user, how to create and modify users and groups, examine file permission structures, and use essential commands such as sudo, chmod, and chown to control access and ownership on files and directories.

$rootLinuxPermissions
0 likes · 8 min read
Master Linux Permissions: Root, Users, Groups, chmod & chown Explained
Liangxu Linux
Liangxu Linux
Oct 16, 2025 · Operations

How Many TCP Connections Can a Linux Server Actually Handle?

This article explains the Linux limits on open files and TCP connections, describes the three key kernel parameters (fs.file-max, soft/hard nofile, fs.nr_open), shows how to adjust them, and estimates realistic connection counts for servers and clients based on memory and port constraints.

LinuxServer ConfigurationTCP
0 likes · 15 min read
How Many TCP Connections Can a Linux Server Actually Handle?
MaGe Linux Operations
MaGe Linux Operations
Oct 16, 2025 · Operations

Essential Linux Performance Troubleshooting Cheat Sheet: From CPU to Network

This guide provides a systematic Linux performance troubleshooting cheat sheet covering CPU, memory, disk I/O, network, processes, system calls, logs, and kernel parameters, complete with over 20 practical commands, real‑world case studies, best‑practice checklists, and an FAQ to help ops engineers quickly pinpoint and resolve performance bottlenecks.

Linuxtroubleshooting
0 likes · 22 min read
Essential Linux Performance Troubleshooting Cheat Sheet: From CPU to Network
Deepin Linux
Deepin Linux
Oct 14, 2025 · Fundamentals

Unlocking Linux: How ELF Files Transform Into Running Processes

This article explains the ELF file format, its various types, internal structure, compilation and linking steps, and how the Linux kernel loads ELF binaries, creates processes with fork and exec, handles dynamic linking, relocation, and builds the process address space, providing developers and system engineers with deep insight into Linux execution.

Binary FormatELFExecutable
0 likes · 40 min read
Unlocking Linux: How ELF Files Transform Into Running Processes
Raymond Ops
Raymond Ops
Oct 12, 2025 · Operations

Step-by-Step Guide to Building a DNS Server on Linux

Learn how to configure a full-featured DNS server on Linux, covering DNS fundamentals, local caching, recursive and forward queries, BIND installation, detailed named.conf settings, zone file creation for forward and reverse lookups, and client testing, with troubleshooting tips and common pitfalls.

BINDDNSLinux
0 likes · 13 min read
Step-by-Step Guide to Building a DNS Server on Linux
ITPUB
ITPUB
Oct 12, 2025 · Operations

30 Powerful Linux Command Combos for System Monitoring, Log Analysis & Security

This guide presents 30 practical Linux command combinations organized into six high‑frequency scenarios—system monitoring, log analysis, file management, process control, network troubleshooting, and security auditing—each with clear explanations, real‑world examples, and cautionary notes to help administrators quickly diagnose and resolve common operational issues.

LinuxSystem Administrationcommand-line
0 likes · 33 min read
30 Powerful Linux Command Combos for System Monitoring, Log Analysis & Security
Deepin Linux
Deepin Linux
Oct 12, 2025 · Operations

Unlock Linux Performance: Mastering CFS Process Scheduling and Tuning

This comprehensive guide explains Linux’s Completely Fair Scheduler (CFS), covering its core principles, virtual runtime calculations, red‑black tree implementation, multi‑core load balancing, real‑time priority handling, and practical tuning techniques with full C++ examples to help developers and sysadmins optimize CPU allocation and system responsiveness.

CFSLinuxPerformance Tuning
0 likes · 66 min read
Unlock Linux Performance: Mastering CFS Process Scheduling and Tuning
Raymond Ops
Raymond Ops
Oct 11, 2025 · Cloud Computing

Master Linux KVM: Step‑by‑Step Deployment with Commands & Screenshots

This guide walks you through installing and configuring a KVM virtualization platform on Linux, covering its advantages and drawbacks, setting up local repositories, verifying hardware support, creating storage pools and volumes, importing ISO images, allocating resources, and launching a virtual CentOS 7 machine using virt‑manager.

CentOSKVMLinux
0 likes · 9 min read
Master Linux KVM: Step‑by‑Step Deployment with Commands & Screenshots
Raymond Ops
Raymond Ops
Oct 11, 2025 · Information Security

Master Linux Firewall & SSH: Step‑by‑Step Guide to Secure Web Server Access

This tutorial walks through configuring a Linux firewall and web server, setting up network interfaces across four virtual machines, enabling NAT, defining DMZ zones, securing SSH on a non‑standard port, and verifying connectivity, providing a comprehensive hands‑on guide for robust network security.

CentOSLinuxSSH
0 likes · 7 min read
Master Linux Firewall & SSH: Step‑by‑Step Guide to Secure Web Server Access
Architect's Must-Have
Architect's Must-Have
Oct 11, 2025 · Fundamentals

How Many Concurrent TCP Connections Can a Server Actually Handle?

This article explains the theoretical and practical limits of concurrent TCP connections on a single Linux server, clarifying the role of port numbers, the 4‑tuple identification, and how memory and file‑descriptor limits, not the 65535 port ceiling, determine real‑world capacity.

LinuxTCPconcurrent connections
0 likes · 11 min read
How Many Concurrent TCP Connections Can a Server Actually Handle?
Top Architect
Top Architect
Oct 10, 2025 · Operations

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

This step‑by‑step guide shows how to choose a Raspberry Pi Zero W, flash Raspbian Stretch Lite onto a micro‑SD card, enable headless SSH, configure Wi‑Fi, install and run Nginx, and expose the server to the internet using Ngrok, all while keeping the device compact and efficient.

LinuxRaspberry PiSSH
0 likes · 13 min read
Turn a Raspberry Pi Zero W into a Mini Web Server with SSH and Ngrok
Raymond Ops
Raymond Ops
Oct 10, 2025 · Operations

Master Linux Background Jobs: &, nohup, and screen Explained

This article explains how to run Linux commands in the background using &, nohup, and screen, covering concepts, syntax, practical examples, job control shortcuts like CTRL+Z, bg, fg, and detailed instructions for installing and using screen to manage persistent sessions.

Linuxjob-controlnohup
0 likes · 8 min read
Master Linux Background Jobs: &, nohup, and screen Explained
Huawei Cloud Developer Alliance
Huawei Cloud Developer Alliance
Oct 10, 2025 · Operations

Why Does Ping Fail? 10 Common Causes and How to Fix Them

This article explains the ten most frequent reasons why a Ping command may fail—ranging from offline target hosts and IP misconfigurations to firewall blocks and DNS issues—and provides practical step‑by‑step troubleshooting methods and solutions to help you quickly resolve network connectivity problems.

ICMPLinuxWindows
0 likes · 9 min read
Why Does Ping Fail? 10 Common Causes and How to Fix Them
Deepin Linux
Deepin Linux
Oct 10, 2025 · Operations

Mastering Linux Memory cgroups: Theory, Configuration, and Real‑World Scripts

This comprehensive guide explains the fundamentals of Linux memory cgroups, walks through their creation and configuration, details core kernel mechanisms such as OOM handling and hierarchical limits, and provides practical Bash scripts for Docker, Kubernetes, and multi‑tenant environments to help engineers reliably control memory usage.

ContainerLinuxResource Isolation
0 likes · 60 min read
Mastering Linux Memory cgroups: Theory, Configuration, and Real‑World Scripts
Liangxu Linux
Liangxu Linux
Oct 9, 2025 · Information Security

Master DDoS Defense: Linux Traffic Scrubbing & Rate Limiting Strategies

This article shares a hands‑on, production‑tested DDoS mitigation guide that covers real‑world attack analysis, layered defense architecture, Linux kernel‑level traffic cleaning with iptables and tc, Nginx + Lua application‑layer protection, automated monitoring, performance tuning, and future trends.

DDoSLinuxiptables
0 likes · 11 min read
Master DDoS Defense: Linux Traffic Scrubbing & Rate Limiting Strategies
Raymond Ops
Raymond Ops
Oct 9, 2025 · Databases

Step‑by‑Step: Install MySQL 8.0/8.4 on Ubuntu 24.04 and Debian 11/12

This guide walks you through adding the MySQL APT repository, selecting the desired MySQL version, installing required dependencies, configuring the package source, installing MySQL on Ubuntu 24.04 and Debian 11/12, enabling the service, and verifying the installation with status checks and database listings.

DebianLinuxMySQL
0 likes · 15 min read
Step‑by‑Step: Install MySQL 8.0/8.4 on Ubuntu 24.04 and Debian 11/12
ITPUB
ITPUB
Oct 9, 2025 · Operations

From Server Restart to High‑Pay Ops Engineer: Career Path & Skills Guide

This article outlines the typical salary stages for operations engineers in China, detailing the job responsibilities, required qualifications, and essential technical skills—from basic server maintenance to advanced automation, high‑availability architecture, and cloud‑native DevOps practices—helping newcomers chart a clear growth roadmap.

DevOpsLinuxSysadmin
0 likes · 14 min read
From Server Restart to High‑Pay Ops Engineer: Career Path & Skills Guide
Deepin Linux
Deepin Linux
Oct 9, 2025 · Fundamentals

Why Memory Alignment Is Critical for Linux Performance and Stability

This article explains how memory alignment in Linux—driven by hardware granularity, kernel allocation policies, and compiler optimizations—affects struct layout, cross‑platform compatibility, and execution speed, and provides practical techniques and testing methods to ensure optimal performance and reliability.

C ProgrammingLinuxPerformance Optimization
0 likes · 37 min read
Why Memory Alignment Is Critical for Linux Performance and Stability
Liangxu Linux
Liangxu Linux
Oct 8, 2025 · Operations

Mastering High‑Load Linux Server Performance: Diagnose and Fix Bottlenecks

When a Linux server spikes to 90% CPU, memory pressure grows, and database connections exhaust, this guide walks you through a systematic methodology, essential tools, real‑world case studies, and practical optimizations to quickly locate and resolve performance bottlenecks.

LinuxOperationsServer Monitoring
0 likes · 15 min read
Mastering High‑Load Linux Server Performance: Diagnose and Fix Bottlenecks
Raymond Ops
Raymond Ops
Oct 8, 2025 · Databases

Step-by-Step Guide: Installing MySQL via RPM on Rocky, AlmaLinux, CentOS and More

This article provides a comprehensive, cross‑platform tutorial for downloading MySQL RPM bundles, installing required dependencies, using rpm or yum to install MySQL on various RHEL‑compatible distributions, starting the service, retrieving the temporary root password, and securely changing it to a permanent one.

LinuxMySQLRPM
0 likes · 39 min read
Step-by-Step Guide: Installing MySQL via RPM on Rocky, AlmaLinux, CentOS and More
Liangxu Linux
Liangxu Linux
Oct 7, 2025 · Operations

Master Linux Installation: Zero‑Error Partitioning Strategies

This guide walks you through why careful partition planning is critical, presents production, desktop, development, and cloud server layouts, details hardware checks, BIOS settings, command‑line and LVM partitioning steps, compares filesystems, and offers security hardening, automation scripts, and monitoring tips for a flawless Linux installation.

FilesystemLVMLinux
0 likes · 15 min read
Master Linux Installation: Zero‑Error Partitioning Strategies
Raymond Ops
Raymond Ops
Oct 6, 2025 · Operations

Master Chrony: Install and Configure High‑Precision Time Sync on Linux

This guide walks you through installing Chrony on various Linux distributions, configuring its high‑precision NTP settings, setting up a private time server and client, adjusting network, firewall, SELinux, and timezone options, and using one‑click Bash scripts for automated deployment.

LinuxNTPSystem Administration
0 likes · 31 min read
Master Chrony: Install and Configure High‑Precision Time Sync on Linux
Liangxu Linux
Liangxu Linux
Oct 6, 2025 · Fundamentals

Choosing the Right File System: FAT32, exFAT, NTFS, APFS, ext4, XFS & Btrfs

Explore the key characteristics, advantages, limitations, and ideal use cases of major file system formats—including FAT32, exFAT, NTFS, APFS, HFS+, ext4, XFS, and Btrfs—along with practical formatting commands and comparison tables to help you select the best storage solution for Windows, macOS, Linux, and cross‑platform environments.

APFSBtrfsFAT32
0 likes · 26 min read
Choosing the Right File System: FAT32, exFAT, NTFS, APFS, ext4, XFS & Btrfs
ITPUB
ITPUB
Oct 6, 2025 · Databases

What Happens When a KingbaseES License Expires? A Practical Guide

This article explains the structure of KingbaseES license files, distinguishes commercial and non‑commercial license types, describes the actual behavior of the database when a license expires, and provides step‑by‑step workarounds such as OS date tweaking, license inspection, file replacement, and server reload commands.

Database AdministrationDatabase LicenseKingbaseES
0 likes · 10 min read
What Happens When a KingbaseES License Expires? A Practical Guide
Raymond Ops
Raymond Ops
Oct 5, 2025 · Fundamentals

Unlock Linux Permissions: Master Users, Groups, and Access Controls

This guide explores Linux permissions in depth, covering the shell, root and regular user roles, switching users with su, using sudo for privilege escalation, interpreting rwx permission bits, managing file and directory permissions with chmod and chown, understanding umask defaults, and configuring sticky bits for shared directories.

LinuxPermissionsShell
0 likes · 14 min read
Unlock Linux Permissions: Master Users, Groups, and Access Controls
Raymond Ops
Raymond Ops
Oct 4, 2025 · Operations

Master Linux Process Management: ps, top, htop, and iotop Explained

This guide covers Linux process fundamentals, explains how to use ps, top, htop, and iotop for monitoring, details common process states including zombies and orphans, and provides practical command syntax, options, installation steps, and useful shortcuts for system administrators and developers.

Linuxhtopiotop
0 likes · 12 min read
Master Linux Process Management: ps, top, htop, and iotop Explained
IT Services Circle
IT Services Circle
Oct 4, 2025 · Fundamentals

How to Pick the Perfect Linux Distribution for Beginners

This guide explains why the sheer number of Linux distributions and desktop environments can overwhelm newcomers and outlines three essential criteria—large user base, easy installation, and an attractive interface—to help you choose a suitable distro.

Desktop EnvironmentLinuxbeginner guide
0 likes · 4 min read
How to Pick the Perfect Linux Distribution for Beginners
Raymond Ops
Raymond Ops
Oct 3, 2025 · Operations

Master Essential Linux Commands: A Complete Cheat Sheet for System Operations

This comprehensive guide lists the most commonly used Linux commands—such as cd, ls, cp, mv, rm, grep, tar, and many others—explaining their purpose, key options, and providing practical examples so readers can efficiently manage files, processes, networking, and system tasks from the command line.

LinuxShellcommand-line
0 likes · 23 min read
Master Essential Linux Commands: A Complete Cheat Sheet for System Operations
21CTO
21CTO
Oct 3, 2025 · Fundamentals

How ByteDance’s Parker Enables Multiple Linux Kernels on a Single Machine

ByteDance’s Parker proposal describes a partition‑aware Linux kernel that lets several independent kernel instances run concurrently on one physical server without traditional virtualization, improving scalability for high‑core‑count systems while allowing per‑kernel performance tuning.

Kernel PartitioningLinuxMultikernel
0 likes · 6 min read
How ByteDance’s Parker Enables Multiple Linux Kernels on a Single Machine
MaGe Linux Operations
MaGe Linux Operations
Oct 3, 2025 · Operations

Why Your Crontab Jobs Fail: 5 Common Mistakes and How to Fix Them

This article explains why scheduled tasks often break in crontab, outlines the five most frequent errors such as missing environment variables, wrong paths, silent output, incorrect time expressions, and permission issues, and provides concrete debugging steps and best‑practice solutions for reliable Linux scheduling.

BashLinuxOps
0 likes · 30 min read
Why Your Crontab Jobs Fail: 5 Common Mistakes and How to Fix Them
Raymond Ops
Raymond Ops
Oct 2, 2025 · Operations

Unlock the Power of Linux’s Triple Threat: grep, sed, and awk

This comprehensive guide introduces the Linux “three swords”—grep, sed, and awk—explaining regular expressions, metacharacters, and practical command syntax, while providing examples, options, and advanced usage tips to boost efficiency in text processing and system administration.

GrepLinuxShell scripting
0 likes · 22 min read
Unlock the Power of Linux’s Triple Threat: grep, sed, and awk
Raymond Ops
Raymond Ops
Oct 2, 2025 · Operations

Step‑by‑Step Guide: Deploy Zabbix 7.0 on Ubuntu 22.04 LTS

This tutorial walks you through preparing the environment, adding the Zabbix repository, installing required packages, configuring MySQL, setting up Zabbix server and agent, customizing the web interface, and adding monitored hosts on Ubuntu 22.04 LTS, complete with commands and screenshots.

LinuxMySQLOperations
0 likes · 7 min read
Step‑by‑Step Guide: Deploy Zabbix 7.0 on Ubuntu 22.04 LTS
Raymond Ops
Raymond Ops
Oct 2, 2025 · Operations

All‑In‑One Linux System Initialization Scripts for Rocky, AlmaLinux, CentOS, Ubuntu, Debian & More

This article introduces a collection of shell scripts that automate system initialization across dozens of Linux distributions—including Rocky, AlmaLinux, CentOS, Ubuntu, Debian, openEuler, AnolisOS, OpenCloudOS, openSUSE, Kylin Server and UOS Server—detailing supported features, version‑specific OS compatibility, usage instructions, changelogs, and troubleshooting tips.

LinuxOS setupSystem Initialization
0 likes · 19 min read
All‑In‑One Linux System Initialization Scripts for Rocky, AlmaLinux, CentOS, Ubuntu, Debian & More
Raymond Ops
Raymond Ops
Oct 1, 2025 · Information Security

Master SSH Remote Login: Protocol Basics, Commands, and Security Best Practices

This comprehensive guide explains SSH fundamentals, protocol types, advantages, client and server software, public‑key exchange, configuration files, command usage, best‑practice hardening, and password‑less authentication, providing Linux administrators with the essential knowledge to securely manage remote systems.

LinuxRemote accessSSH
0 likes · 17 min read
Master SSH Remote Login: Protocol Basics, Commands, and Security Best Practices
Raymond Ops
Raymond Ops
Sep 30, 2025 · Operations

Master Linux Network Configuration: IP, Routing, Bonding and More

This guide walks through Linux network fundamentals, covering hostname, IP address, netmask, gateway, DNS, interface status, routing tables, and tools like ifconfig, ip, route, ss, netstat, traceroute, nslookup, tcpdump, as well as temporary and permanent IP changes, interface renaming, dual‑NIC bonding, and practical command examples.

BondingLinuxip
0 likes · 20 min read
Master Linux Network Configuration: IP, Routing, Bonding and More
ITPUB
ITPUB
Sep 30, 2025 · Operations

Turning Ops Chaos into Order: Postmortems, Tools, and AI‑Powered Assistants

This article explains why the chaotic nature of modern operations—spanning mixed‑technology stacks, cross‑domain tasks, and legacy‑new architecture battles—creates value, outlines a fair post‑mortem process, and introduces practical tools and AI agents such as LinuxMirrors, kubectl‑ai, Zread AI, and Lerwee that help turn disorder into reliable, automated workflows.

AI AssistantKubernetesLinux
0 likes · 11 min read
Turning Ops Chaos into Order: Postmortems, Tools, and AI‑Powered Assistants
Su San Talks Tech
Su San Talks Tech
Sep 30, 2025 · Operations

Master High-Concurrency Nginx: Proven Configs to Crush 502/504 Errors

Learn how to transform Nginx into a high‑concurrency powerhouse by addressing common 502/504 errors, optimizing worker processes, event and HTTP settings, fine‑tuning OS kernel parameters, implementing caching, rate‑limiting, load‑balancing, and monitoring scripts, with practical code examples and checklists.

LinuxNGINXSystem optimization
0 likes · 10 min read
Master High-Concurrency Nginx: Proven Configs to Crush 502/504 Errors
Raymond Ops
Raymond Ops
Sep 29, 2025 · Operations

Master Linux Performance: 5 Essential Monitoring Commands Explained

This article introduces five essential Linux performance monitoring commands—vmstat, iostat, free, df, and sar—detailing their purpose, key options, example usages, and the meaning of each output column to help you effectively track system resources.

FreeLinuxdf
0 likes · 11 min read
Master Linux Performance: 5 Essential Monitoring Commands Explained
Liangxu Linux
Liangxu Linux
Sep 28, 2025 · Information Security

Hardening SSH on Linux: Practical Defenses Against Brute‑Force Attacks

This guide explains why SSH brute‑force attacks threaten Linux servers and provides a step‑by‑step hardening checklist—including changing the default port, disabling root login, using key‑based authentication, deploying automatic block tools, setting IP whitelists, and regularly analyzing logs—to dramatically improve server security.

Brute-force protectionDenyHostsFail2ban
0 likes · 5 min read
Hardening SSH on Linux: Practical Defenses Against Brute‑Force Attacks
AI Cyberspace
AI Cyberspace
Sep 28, 2025 · Artificial Intelligence

How to Set Up WSL2 GPU Acceleration and Profile CUDA on Windows 11

This guide walks through configuring Windows 11 with WSL2 and Ubuntu 22.04 for GPU‑accelerated CUDA development, installing NVIDIA drivers and CUDA libraries, setting up SSH and firewall rules, running a CUDA stress‑test program, and using Nsight Systems, Nsight Compute, and NVIDIA DCGM for performance profiling and monitoring.

CUDAGPULinux
0 likes · 39 min read
How to Set Up WSL2 GPU Acceleration and Profile CUDA on Windows 11
Liangxu Linux
Liangxu Linux
Sep 27, 2025 · Operations

Quickly Identify and Release Occupied Ports on Linux

This guide explains what port occupation means on Linux, demonstrates how to use lsof and netstat to pinpoint the process holding a specific port, and shows how to safely terminate that process to free the port for your applications.

LinuxSystem Administrationkill
0 likes · 6 min read
Quickly Identify and Release Occupied Ports on Linux
Raymond Ops
Raymond Ops
Sep 27, 2025 · Operations

Unlock Linux File Permissions: A Complete Guide to Managing Access Rights

This article explains Linux file permission concepts, numeric and symbolic representations, how to combine and modify permissions with chmod (including recursive changes), ownership categories, testing permission effects on files and directories, and default permission settings derived from umask.

LinuxOperationsPermissions
0 likes · 6 min read
Unlock Linux File Permissions: A Complete Guide to Managing Access Rights
ITPUB
ITPUB
Sep 27, 2025 · Information Security

Master SSH Security: Keys, Port Hiding, 2FA, Jump Hosts & Zero Trust

This guide walks through hardening SSH against massive brute‑force attacks by switching to ed25519 key authentication, disabling password logins, obscuring the default port, tightening user permissions, adding two‑factor authentication, configuring bastion hosts, setting connection limits, centralizing logs, rotating keys regularly, and adopting a zero‑trust architecture with HashiCorp Vault.

DevOpsLinuxZero Trust
0 likes · 15 min read
Master SSH Security: Keys, Port Hiding, 2FA, Jump Hosts & Zero Trust
ITPUB
ITPUB
Sep 26, 2025 · Operations

50 Must‑Know Linux Configuration Files for Sysadmins

This guide enumerates fifty essential Linux configuration files across categories such as user and permission management, network settings, startup services, logging, shell environment, cron scheduling, and system information, explaining each file’s path and primary purpose for system administrators.

LinuxOperationsSystem Administration
0 likes · 10 min read
50 Must‑Know Linux Configuration Files for Sysadmins
Deepin Linux
Deepin Linux
Sep 26, 2025 · Fundamentals

Unlocking Linux Heap Secrets: From Layout to Performance Optimization

This comprehensive guide explores Linux process heap memory layout, the inner workings of malloc and ptmalloc, common pitfalls like leaks, fragmentation and holes, and equips developers with practical tools and optimization techniques to diagnose and improve heap performance.

Heap MemoryLinuxptmalloc
0 likes · 76 min read
Unlocking Linux Heap Secrets: From Layout to Performance Optimization
Linux Tech Enthusiast
Linux Tech Enthusiast
Sep 26, 2025 · Operations

Seven Practical Ways to Use the Ping Command

This article walks through seven common ping command usages—including basic connectivity checks, continuous ping, name resolution, custom packet counts and sizes, route recording, and batch subnet scanning—explaining each option's output, typical values, and security considerations.

DoSLinuxTTL
0 likes · 8 min read
Seven Practical Ways to Use the Ping Command