Tagged articles
5000 articles
Page 32 of 50
Efficient Ops
Efficient Ops
May 17, 2022 · Fundamentals

Mastering sed: Powerful Stream Editing Techniques for Linux

This tutorial introduces the Linux stream editor sed, explains its working principle, common usage scenarios, regular expression basics, essential command syntax, address selection methods, and provides practical examples to help readers efficiently perform automated text manipulation tasks.

linuxregexsed
0 likes · 12 min read
Mastering sed: Powerful Stream Editing Techniques for Linux
Open Source Linux
Open Source Linux
May 17, 2022 · Fundamentals

How Linux Manages Process Memory: From Allocation to OOM Recovery

This article explains Linux's process memory layout, allocation mechanisms, out‑of‑memory handling, where different types of memory reside, and both manual and automatic memory reclamation techniques, providing practical examples and kernel‑level insights for developers and system engineers.

linuxmmapprocess memory
0 likes · 19 min read
How Linux Manages Process Memory: From Allocation to OOM Recovery
dbaplus Community
dbaplus Community
May 16, 2022 · Databases

Master MySQL 8.0.28: Install, Configure, and Connect via JDBC

This guide walks beginners through downloading, installing, and configuring MySQL 8.0.28 on Windows and Linux, covering environment variables, service management, password recovery, user and role creation, and JDBC connection setup with Maven, providing detailed commands, code snippets, and troubleshooting tips for a complete setup.

DatabaseInstallationJDBC
0 likes · 29 min read
Master MySQL 8.0.28: Install, Configure, and Connect via JDBC
Open Source Linux
Open Source Linux
May 16, 2022 · Operations

24 Essential Docker Troubleshooting Tips to Fix Common Container Issues

This guide compiles 24 practical Docker troubleshooting scenarios—from storage migration and disk space errors to network configuration, NFS mounts, and container management—providing clear problem descriptions, step‑by‑step solutions, and ready‑to‑use command snippets for Linux environments.

ContainersDevOpsDocker
0 likes · 38 min read
24 Essential Docker Troubleshooting Tips to Fix Common Container Issues
MaGe Linux Operations
MaGe Linux Operations
May 14, 2022 · Operations

Master Linux Password Reset, File System Basics, and Network Setup

This guide covers step‑by‑step methods to recover forgotten root passwords on various Linux distributions, explains common filesystem directories, lists essential commands, details SUID/SGID/sticky bit usage, shows how to configure static IPs in bridge and NAT modes, set up local yum repositories, manage iptables and firewalld rules, and provides basic shell scripting and hardening tips.

Password RecoverySystem Administrationlinux
0 likes · 17 min read
Master Linux Password Reset, File System Basics, and Network Setup
Programmer DD
Programmer DD
May 14, 2022 · Information Security

What Happens When You Run These Dangerous Linux Commands?

The article explains several destructive Linux commands—including rm -rf, fork bombs, direct disk writes, and hidden shellcode—detailing their effects, providing code examples, and warning readers to understand and test them carefully to avoid irreversible system damage.

System Administrationdangerous-commandslinux
0 likes · 6 min read
What Happens When You Run These Dangerous Linux Commands?
21CTO
21CTO
May 13, 2022 · Fundamentals

Why Nvidia’s Open‑Source GPU Driver Could Transform Linux and AI Development

Nvidia’s release of the open‑source R515 GPU driver for Linux, supporting data‑center and consumer GPUs under a dual GPL/MIT license, marks a pivotal shift that eases integration for AI/ML developers, gamers, and cloud users while fostering community‑driven improvements to driver quality and security.

AI/MLAmpereGPU Driver
0 likes · 7 min read
Why Nvidia’s Open‑Source GPU Driver Could Transform Linux and AI Development
Ziru Technology
Ziru Technology
May 13, 2022 · Fundamentals

Understanding VSZ, RSS, PSS, PageCache and Swap: A Linux Memory Primer

This article explains Linux memory metrics VSZ, RSS, and PSS, illustrates them with a roommate analogy, details PageCache and its role in I/O, describes swap behavior and the swappiness setting, and introduces zero‑copy techniques to reduce data copying and context switches.

PageCacheRSSSwap
0 likes · 9 min read
Understanding VSZ, RSS, PSS, PageCache and Swap: A Linux Memory Primer
Open Source Linux
Open Source Linux
May 13, 2022 · Fundamentals

Can Linux Replace Windows? Installation, Compatibility, and Usability Guide

This article examines whether Linux can serve as a daily‑primary operating system by comparing installation ease, hardware compatibility, user‑interface experience, software ecosystem, gaming support, and maintenance effort against Windows, offering practical advice for different user skill levels.

InstallationSoftwareWindows
0 likes · 18 min read
Can Linux Replace Windows? Installation, Compatibility, and Usability Guide
ITPUB
ITPUB
May 11, 2022 · Fundamentals

Debugging Linux 0.11 on Windows with VSCode Remote and QEMU

This guide shows how to set up an Ubuntu 16.04 virtual machine on Windows, install QEMU, fetch a modernized Linux 0.11 source tree, and use VSCode Remote‑SSH together with GDB to debug the historic kernel without rebuilding outdated toolchains.

Operating SystemsQEMUVSCode
0 likes · 7 min read
Debugging Linux 0.11 on Windows with VSCode Remote and QEMU
ITPUB
ITPUB
May 10, 2022 · Fundamentals

Master Linux Memory Management: Virtual & Physical Memory Explained

This article provides a comprehensive guide to Linux memory management on x86‑32 systems, covering virtual address spaces, physical address translation, memory zones, user and kernel space layouts, the buddy and slab allocators, malloc/kmalloc/vmalloc mechanisms, and useful commands for inspecting memory usage.

Physical MemorySlab AllocatorVirtual Memory
0 likes · 25 min read
Master Linux Memory Management: Virtual & Physical Memory Explained
Open Source Linux
Open Source Linux
May 10, 2022 · Operations

Mastering Linux Disk I/O: Key Metrics and Essential Monitoring Tools

This article explains Linux’s storage I/O stack, defines the five core performance metrics—utilization, saturation, IOPS, throughput, and response time—and demonstrates how to monitor them using tools such as iostat, pidstat, and iotop, with practical command examples.

disk I/Oiostatiotop
0 likes · 9 min read
Mastering Linux Disk I/O: Key Metrics and Essential Monitoring Tools
MaGe Linux Operations
MaGe Linux Operations
May 8, 2022 · Fundamentals

5 Common Bash Variable Mistakes and How to Avoid Them

Learn five practical tips to prevent common Bash variable errors—such as avoiding spaces around '=', correctly defining arrays, choosing proper quoting, using $(…) instead of backticks, and steering clear of reserved environment variable names—to write reliable Linux shell scripts.

linuxprogramming tipsvariables
0 likes · 5 min read
5 Common Bash Variable Mistakes and How to Avoid Them
DevOps Cloud Academy
DevOps Cloud Academy
May 7, 2022 · Operations

Optimizing Zabbix Monitoring for Linux and Windows Systems

This article provides a comprehensive guide on configuring and optimizing Zabbix agent monitoring for Linux and Windows, covering agent types, passive and active modes, macro variables, LLD macros, CPU/memory/file‑system metrics, and Windows service, performance counter, and event‑log monitoring.

OperationsWindowslinux
0 likes · 9 min read
Optimizing Zabbix Monitoring for Linux and Windows Systems
Liangxu Linux
Liangxu Linux
May 6, 2022 · Fundamentals

Mastering the Bash test Command: Compare Numbers, Strings, and Files

This guide explains how to use the Bash built‑in test command for evaluating numeric, string, and file conditions, shows practical examples with && and || chaining, and demonstrates alternative bracket syntax for robust shell scripting.

BashShell scriptingconditional expressions
0 likes · 12 min read
Mastering the Bash test Command: Compare Numbers, Strings, and Files
Java Tech Enthusiast
Java Tech Enthusiast
May 5, 2022 · Operations

Nginx Installation, Configuration, and Basic Usage Guide

This guide walks through downloading, compiling, and installing Nginx from source on Linux, configuring dependencies, creating a systemd service, managing start/stop commands, understanding the directory layout, and setting up basic nginx.conf directives—including worker processes, connections, MIME types, and virtual host server_name patterns.

InstallationWeb serverconfiguration
0 likes · 16 min read
Nginx Installation, Configuration, and Basic Usage Guide
Open Source Linux
Open Source Linux
May 5, 2022 · Operations

20 Proven Linux Server Performance Tweaks Every Sysadmin Should Know

This guide presents a comprehensive set of Linux server optimization techniques—from kernel I/O scheduling and daemon reduction to filesystem choices, TCP tuning, and essential performance commands—helping system administrators boost efficiency, security, and reliability across diverse workloads.

kernellinuxserver optimization
0 likes · 14 min read
20 Proven Linux Server Performance Tweaks Every Sysadmin Should Know
Top Architect
Top Architect
May 1, 2022 · Cloud Native

Podman vs Docker: A Comprehensive Comparison

This article provides an in‑depth comparison of Podman and Docker, covering their architectures, root‑less operation, security, integration with Kubernetes, support for Swarm/Compose, and practical guidance on when to choose or combine each container solution.

ContainerPodmanlinux
0 likes · 12 min read
Podman vs Docker: A Comprehensive Comparison
Code DAO
Code DAO
May 1, 2022 · Fundamentals

How to Build a Linux Packet Sniffer Using Raw Sockets and BPF

This article walks through creating a Linux packet sniffer that bypasses libpcap, explains PF_PACKET raw sockets, shows how to bind to a specific interface, enable promiscuous mode, attach a BPF filter compiled with tcpdump, and parse Ethernet and IP headers in a continuous receive loop.

BPFPF_PACKETlinux
0 likes · 26 min read
How to Build a Linux Packet Sniffer Using Raw Sockets and BPF
Code DAO
Code DAO
Apr 30, 2022 · Backend Development

Building an Extensible Node.js CLI Tool Using the Command Pattern

The article walks through creating a lightweight, extensible Node.js command‑line utility without third‑party libraries, covering the command‑pattern design, implementation of split, upper, and word‑count commands, dynamic command loading, and best practices for modular, maintainable CLI development on Linux.

CLICommand PatternCommander
0 likes · 12 min read
Building an Extensible Node.js CLI Tool Using the Command Pattern
21CTO
21CTO
Apr 29, 2022 · Information Security

How Nimbuspwn Exploits systemd’s networkd-dispatcher for Root Access

Microsoft researchers uncovered the Nimbuspwn vulnerability in systemd’s networkd-dispatcher, detailing how directory‑traversal, symlink‑race, and TOCTOU flaws let attackers replace root‑owned scripts, achieve privilege escalation, and why coordinated patching across hundreds of Linux distributions is critical.

SystemdVulnerabilitylinux
0 likes · 4 min read
How Nimbuspwn Exploits systemd’s networkd-dispatcher for Root Access
Open Source Linux
Open Source Linux
Apr 29, 2022 · Operations

Discover Ubuntu 22.04 LTS: 5 Unique Features That Make It the Best LTS Release

Ubuntu 22.04 LTS, codenamed Jammy Jellyfish, introduces five distinctive capabilities—including optimized data‑driven workloads, enhanced Active Directory integration, a real‑time kernel option, updated packages and drivers, and performance boosts—that together position it as arguably the strongest long‑term support Ubuntu version to date.

LTSUbuntuVirtualization
0 likes · 8 min read
Discover Ubuntu 22.04 LTS: 5 Unique Features That Make It the Best LTS Release
Liangxu Linux
Liangxu Linux
Apr 26, 2022 · Operations

Master Linux sleep and wait: Precise Timing and Process Synchronization

This guide explains how to use the Linux sleep and wait commands for pausing execution, specifying time units, handling sub‑second intervals, running periodic tasks, and synchronizing background processes, complete with practical Bash examples and detailed explanations.

BashScriptinglinux
0 likes · 5 min read
Master Linux sleep and wait: Precise Timing and Process Synchronization
MaGe Linux Operations
MaGe Linux Operations
Apr 26, 2022 · Operations

Install and Use pinfo for Colorful Info Pages on Linux and Unix

Learn how to install the pinfo tool across major Linux, BSD, and macOS distributions and use it to view Texinfo documentation with syntax‑highlighted colors, including command examples, navigation shortcuts, and alias configuration for a richer command‑line experience.

Unixcolorful outputinfo pages
0 likes · 4 min read
Install and Use pinfo for Colorful Info Pages on Linux and Unix
Architect
Architect
Apr 24, 2022 · Backend Development

Comprehensive Nginx Tutorial: Installation, Configuration, Reverse Proxy, Load Balancing, and High Availability

This guide provides a step‑by‑step tutorial on Nginx, covering its overview, single‑instance installation, reverse proxy setup, load‑balancing configuration, static‑dynamic separation, high‑availability clustering with keepalived, detailed configuration directives, and performance considerations, complete with command‑line examples and code snippets.

high availabilitylinuxload balancing
0 likes · 30 min read
Comprehensive Nginx Tutorial: Installation, Configuration, Reverse Proxy, Load Balancing, and High Availability
ITPUB
ITPUB
Apr 24, 2022 · Operations

What Happens When You Run These Dangerous Linux Commands?

This article explains several Linux commands—such as rm -rf, fork bombs, direct writes to block devices, and malicious script execution—that can irreversibly damage systems, detailing their effects, typical usage examples, and essential precautions to avoid catastrophic data loss.

System Administrationdangerous-commandslinux
0 likes · 5 min read
What Happens When You Run These Dangerous Linux Commands?
MaGe Linux Operations
MaGe Linux Operations
Apr 22, 2022 · Fundamentals

Understanding Linux CPU Context Switches: Impact and Mechanics

This article explains how Linux creates the illusion of multitasking by rapidly swapping CPU registers and program counters, details the three types of context switches—process, thread, and interrupt—and shows why excessive switching can significantly degrade system performance.

Threadcontext switchlinux
0 likes · 10 min read
Understanding Linux CPU Context Switches: Impact and Mechanics
Practical DevOps Architecture
Practical DevOps Architecture
Apr 22, 2022 · Operations

GitLab Installation and Basic Configuration Guide on CentOS

This guide walks through installing GitLab on a CentOS server, configuring its external URL, setting up admin credentials, performing basic GitLab operations such as disabling auto‑registration, creating projects, configuring SSH keys, testing repository cloning, and configuring webhooks and backup management.

GitLabInstallationbackup
0 likes · 4 min read
GitLab Installation and Basic Configuration Guide on CentOS
MaGe Linux Operations
MaGe Linux Operations
Apr 21, 2022 · Game Development

Explore Classic Linux Terminal Games: Install & Play Tetris, Pac‑Man, Snake, and More

This guide shows how to install and run a collection of classic Linux terminal games—including Bastet (a Tetris clone), Pacman4Console, nSnake, 2048, Nudoku, Moon‑Buggy, Ninvaders, Ascii‑Patrol, Greed, and BSD Games—on Debian/Ubuntu or Fedora/RHEL/CentOS using simple package commands, providing a fun way to learn the Linux command line.

BastetTerminalgames
0 likes · 11 min read
Explore Classic Linux Terminal Games: Install & Play Tetris, Pac‑Man, Snake, and More
MaGe Linux Operations
MaGe Linux Operations
Apr 19, 2022 · Fundamentals

10 Fun Linux Terminal Commands to Wow Your Friends

Discover a curated list of entertaining Linux commands—like cmatrix, xcowsay, sl, aafire, and more—complete with installation steps, usage examples, and visual demos that turn your terminal into a playful showcase.

CLIFun CommandsLinux Tips
0 likes · 5 min read
10 Fun Linux Terminal Commands to Wow Your Friends
Open Source Linux
Open Source Linux
Apr 19, 2022 · Information Security

Ultimate Linux Server Security Checklist: Harden Accounts, Detect Rootkits, and Respond to Attacks

This comprehensive guide walks you through Linux server hardening—covering account and login security, remote access safeguards, file system protection, rootkit detection tools, and step‑by‑step incident response—to help you prevent breaches and recover swiftly if an attack occurs.

Rootkit Detectionaccount securityfile-permissions
0 likes · 24 min read
Ultimate Linux Server Security Checklist: Harden Accounts, Detect Rootkits, and Respond to Attacks
Practical DevOps Architecture
Practical DevOps Architecture
Apr 18, 2022 · Operations

How to Add a Jenkins Slave Node (Agent) via SSH

This guide walks through the complete process of adding a Jenkins agent, from creating the node in the Jenkins UI and installing Java and Git on the remote machine to copying SSH keys, verifying connectivity, and testing the agent’s operation.

AgentDevOpsJenkins
0 likes · 3 min read
How to Add a Jenkins Slave Node (Agent) via SSH
IT Services Circle
IT Services Circle
Apr 17, 2022 · Operations

Troubleshooting DNS Latency After Machine Replacement in a Go Service

The article details a step‑by‑step investigation of why HTTP request latency increased after moving a Go‑based service to new hardware, focusing on DNS resolution delays, the role of DNSmasq, Go's resolver implementation, and the experiments that led to fixing the issue.

GoMachine ReplacementTroubleshooting
0 likes · 14 min read
Troubleshooting DNS Latency After Machine Replacement in a Go Service
Huawei Cloud Developer Alliance
Huawei Cloud Developer Alliance
Apr 16, 2022 · Cloud Computing

What New Innovations Unveiled at openEuler Developer Day 2022?

The three‑day openEuler Developer Day 2022 showcased the release of openEuler 22.03 LTS, a new ecosystem service platform, partner commercial plans, extensive SIG sessions, and a series of technical demos highlighting server, cloud, edge, and embedded scenarios across the open‑source community.

Cloud ComputingDigital Infrastructurelinux
0 likes · 13 min read
What New Innovations Unveiled at openEuler Developer Day 2022?
Efficient Ops
Efficient Ops
Apr 14, 2022 · Operations

30 Essential Bash Scripts Every Linux Engineer Should Master

This article compiles a comprehensive collection of practical Bash scripts—from a number‑guessing game and remote IP counting to system monitoring, user management, and one‑click LNMP deployment—providing Linux engineers with ready‑to‑use tools that boost productivity and automate routine tasks.

Bashlinuxscripts
0 likes · 21 min read
30 Essential Bash Scripts Every Linux Engineer Should Master
Aikesheng Open Source Community
Aikesheng Open Source Community
Apr 14, 2022 · Operations

Performance Comparison of Linux File Transfer Tools (scp, ftp, sftp, rsync, tftp, nc, Python SimpleHTTPServer)

This article presents a systematic performance comparison of several Linux file‑transfer utilities—including scp, ftp, sftp, rsync, tftp, nc, and a Python SimpleHTTPServer—by measuring transfer times for a 50 GB single file and 51 GB spread across 51 200 one‑megabyte files, and discusses each tool’s speed, compression, encryption, and typical use cases.

file transferlinuxperformance testing
0 likes · 17 min read
Performance Comparison of Linux File Transfer Tools (scp, ftp, sftp, rsync, tftp, nc, Python SimpleHTTPServer)
Open Source Linux
Open Source Linux
Apr 14, 2022 · Backend Development

Master Nginx: From Basics to Advanced Configuration for High‑Performance Servers

This comprehensive guide walks developers through Nginx fundamentals, key features, installation on CentOS, essential commands, core configuration blocks, directive details, variable usage, upstream and proxy_pass setup, reverse proxy, load balancing strategies, caching, HTTPS, CORS, gzip compression, and the internal architecture, enabling you to confidently deploy and manage Nginx in production environments.

Web serverconfigurationlinux
0 likes · 42 min read
Master Nginx: From Basics to Advanced Configuration for High‑Performance Servers
Liangxu Linux
Liangxu Linux
Apr 12, 2022 · Operations

Mastering Nginx: Installation, Core Configuration, and High‑Availability Setup

This comprehensive guide explains Nginx's role as a high‑performance web and reverse‑proxy server, details its installation packages and step‑by‑step build process, breaks down the main nginx.conf sections, and demonstrates practical configurations for reverse proxy, load balancing, static‑dynamic separation, worker tuning, and high‑availability clustering.

Web serverhigh availabilitylinux
0 likes · 15 min read
Mastering Nginx: Installation, Core Configuration, and High‑Availability Setup
Practical DevOps Architecture
Practical DevOps Architecture
Apr 12, 2022 · Cloud Native

Setting Up NFS Storage in Kubernetes with Helm

This guide walks through configuring an NFS server, installing required utilities, creating a dedicated namespace, installing Helm, and deploying the nfs-client-provisioner chart to provide dynamic NFS storage for workloads in a Kubernetes cluster.

NFScloud-nativehelm
0 likes · 3 min read
Setting Up NFS Storage in Kubernetes with Helm
Python Programming Learning Circle
Python Programming Learning Circle
Apr 11, 2022 · Operations

Using TheFuck: A Python Tool for Automatically Fixing Mistyped Shell Commands

The article introduces the Python‑based tool “thefuck”, explains its purpose of automatically correcting mistyped shell commands, demonstrates common use cases, details installation steps across macOS, Ubuntu and other systems, shows how to configure it, and outlines the underlying rule‑based correction mechanisms.

Pythoncommand-linelinux
0 likes · 5 min read
Using TheFuck: A Python Tool for Automatically Fixing Mistyped Shell Commands
Refining Core Development Skills
Refining Core Development Skills
Apr 11, 2022 · Backend Development

How Nginx Uses Epoll in a Multi‑Process Architecture

This article explains Nginx's multi‑process design, detailing how the master process handles socket binding and listening while each worker creates its own epoll instance, registers events, and processes connections through a well‑structured event loop with code examples from the source tree.

Backendepolllinux
0 likes · 18 min read
How Nginx Uses Epoll in a Multi‑Process Architecture
IT Services Circle
IT Services Circle
Apr 8, 2022 · Backend Development

Comprehensive Guide to Installing and Using the Caddy Web Server

This article provides a detailed tutorial on installing Caddy on CentOS and Docker, configuring its powerful Caddyfile syntax, enabling HTTPS, reverse and forward proxy, gzip compression, address rewriting, and directory routing, demonstrating how Caddy can replace Nginx for modern web hosting.

CaddyDockerHTTPS
0 likes · 11 min read
Comprehensive Guide to Installing and Using the Caddy Web Server
MaGe Linux Operations
MaGe Linux Operations
Apr 7, 2022 · Operations

Master ELK Stack: From Basics to Full‑Scale Log Management

This article introduces the ELK stack components, explains why centralized logging is essential, outlines core log‑system features, compares three ELK architectures, provides step‑by‑step installation and configuration for Filebeat, Logstash, Elasticsearch and Kibana, and demonstrates a complete pipeline using Kafka with code examples and diagrams.

ELKElasticsearchFilebeat
0 likes · 25 min read
Master ELK Stack: From Basics to Full‑Scale Log Management
21CTO
21CTO
Apr 1, 2022 · Information Security

Why Minix Might Be the World’s Most Ubiquitous (and Potentially Dangerous) OS

The article explains Minix’s origin as a teaching micro‑kernel OS, its evolution into MINIX 3 for higher security, its hidden role inside Intel’s Management Engine, and the resulting concerns about an invisible, privileged operating system running on most modern CPUs.

IntelMINIXlinux
0 likes · 6 min read
Why Minix Might Be the World’s Most Ubiquitous (and Potentially Dangerous) OS
Open Source Linux
Open Source Linux
Mar 31, 2022 · Operations

Mastering tcpdump: Practical Commands for Network Packet Capture

This guide explains how to use tcpdump for network packet capture, covering basic usage, interface selection, host and port filtering, logical operators, saving captures to files, and real‑world troubleshooting scenarios with clear command examples.

Network MonitoringPacket CaptureTroubleshooting
0 likes · 7 min read
Mastering tcpdump: Practical Commands for Network Packet Capture
MaGe Linux Operations
MaGe Linux Operations
Mar 30, 2022 · Operations

9 Compelling Reasons Developers Choose Linux Over Other OSes

This article outlines nine key reasons why developers favor Linux—ranging from its powerful command line and strong security to low resource usage, privacy protection, free licensing, and extensive community support—making it a reliable, developer‑friendly operating system for desktops, servers, and embedded devices.

Developer Toolslinuxperformance
0 likes · 7 min read
9 Compelling Reasons Developers Choose Linux Over Other OSes
Architects' Tech Alliance
Architects' Tech Alliance
Mar 29, 2022 · Fundamentals

Understanding Linux Ext Filesystems, RAID, and LVM

This article explains the structure of Linux Ext (2/3/4) file systems, the role of superblocks and block groups, compares hardware and software RAID, and introduces LVM as a flexible volume management solution, highlighting its benefits and potential risks.

Ext filesystemLVMRAID
0 likes · 5 min read
Understanding Linux Ext Filesystems, RAID, and LVM
Tencent Database Technology
Tencent Database Technology
Mar 29, 2022 · Fundamentals

Understanding Memory Management: From OS to MySQL

This article explores memory management concepts from both operating system and MySQL perspectives, covering virtual vs physical memory, process memory usage analysis using tools like top and /proc, and experimental verification of memory allocation behaviors.

MySQLOperating SystemsSystem Administration
0 likes · 9 min read
Understanding Memory Management: From OS to MySQL
Tencent Cloud Developer
Tencent Cloud Developer
Mar 29, 2022 · Fundamentals

Deep Dive into the Linux epoll Mechanism and Its Kernel Implementation

The article dissects Linux’s epoll I/O multiplexing, tracing the flow from socket creation with accept through epoll_create, epoll_ctl registration, and epoll_wait sleeping, detailing the kernel’s eventpoll object, red‑black tree, per‑socket wait‑queue callbacks that enable O(log N) registration and O(1) event delivery for tens of thousands of connections.

C++Event-drivenIO Multiplexing
0 likes · 24 min read
Deep Dive into the Linux epoll Mechanism and Its Kernel Implementation
Liangxu Linux
Liangxu Linux
Mar 28, 2022 · Fundamentals

Master Zsh and Oh‑My‑Zsh: Install, Configure, and Customize Your Shell

This guide explains why Linux offers multiple shells, introduces Zsh and its powerful features, walks through installing Zsh and setting it as the default shell, and provides step‑by‑step instructions for adding Oh‑My‑Zsh, customizing themes, plugins, and managing updates or removal.

command-linelinuxoh-my-zsh
0 likes · 8 min read
Master Zsh and Oh‑My‑Zsh: Install, Configure, and Customize Your Shell
Open Source Linux
Open Source Linux
Mar 25, 2022 · Information Security

Beware These Dangerous Linux Commands That Can Wipe Your System

This article warns about several destructive Linux commands—such as rm ‑rf, fork bombs, overwriting block devices, and hidden shellcode—explaining their effects, providing example usages, and emphasizing the importance of understanding and testing commands in a safe environment before execution.

dangerous-commandsdata destructionfork bomb
0 likes · 5 min read
Beware These Dangerous Linux Commands That Can Wipe Your System
Programmer DD
Programmer DD
Mar 24, 2022 · Databases

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

Learn how to install, configure, and operate RedisInsight—an intuitive Redis GUI—on Linux and Kubernetes, covering package download, environment setup, service deployment, basic usage, memory analysis, and key management, with step‑by‑step commands and visual screenshots.

Database GUIInstallationRedis
0 likes · 8 min read
Master RedisInsight: Install, Configure, and Use the Ultimate Redis GUI
Ops Development Stories
Ops Development Stories
Mar 24, 2022 · Operations

Step‑by‑Step Guide to Install a Ceph Cluster on Kylin v10

This article walks through the complete process of setting up a Ceph storage cluster on the domestically‑produced Kylin v10 operating system, covering hardware preparation, host configuration, manual installation of Ceph packages, monitor, OSD, and manager deployment with all necessary command‑line examples.

CephClusterInstallation
0 likes · 14 min read
Step‑by‑Step Guide to Install a Ceph Cluster on Kylin v10
Open Source Linux
Open Source Linux
Mar 22, 2022 · Fundamentals

How Linux Namespaces and Cgroups Enable Resource Isolation and Limits

This article explains how Linux namespaces provide resource isolation while cgroups enforce resource limits, detailing the six namespace types, relevant system calls, practical commands like unshare and cgcreate, and demonstrates CPU share control with Go code and cgroup configuration examples.

GoNamespacesResource Isolation
0 likes · 5 min read
How Linux Namespaces and Cgroups Enable Resource Isolation and Limits
Liangxu Linux
Liangxu Linux
Mar 21, 2022 · Fundamentals

Master the Classic Shell Interview Questions: 13 Essential Concepts Explained

This article presents the classic "Shell Thirteen Questions" covering the definition of a shell, prompt mechanics, echo behavior, quoting rules, variable export, exec versus source, command grouping, substitution, wildcard handling, logical operators, I/O redirection, conditional statements, and loop constructs, each with clear explanations and examples.

BashScriptingcommand-line
0 likes · 12 min read
Master the Classic Shell Interview Questions: 13 Essential Concepts Explained
Open Source Linux
Open Source Linux
Mar 21, 2022 · Fundamentals

Master Zsh: From Basics to Oh‑My‑Zsh Full Configuration

This guide introduces Zsh, compares it with other Linux shells, explains its powerful features, and provides step‑by‑step instructions for installing Zsh, configuring it as the default shell, and enhancing it with Oh‑My‑Zsh themes and plugins.

command linelinuxoh-my-zsh
0 likes · 8 min read
Master Zsh: From Basics to Oh‑My‑Zsh Full Configuration
Selected Java Interview Questions
Selected Java Interview Questions
Mar 20, 2022 · Fundamentals

Comprehensive Linux Basics and Command-Line Guide

An extensive tutorial covering Linux fundamentals, including operating system concepts, shell usage, essential commands, file management, permissions, process handling, networking, package management, compression, compilation, and advanced topics like daemon services, providing practical examples and step‑by‑step instructions for beginners and intermediate users.

System Administrationlinuxshell
0 likes · 48 min read
Comprehensive Linux Basics and Command-Line Guide
Architecture Digest
Architecture Digest
Mar 20, 2022 · Information Security

Comprehensive Linux Hardening Guide: Kernel, Sysctl, Boot Parameters, and Security Best Practices

This guide provides a detailed, step‑by‑step hardening strategy for Linux systems, covering distro selection, kernel choices, extensive sysctl tweaks, boot‑loader parameters, MAC policies, sandboxing, memory allocator hardening, compile‑time mitigations, root account protection, firewall rules, swap configuration, PAM policies, microcode updates, IPv6 privacy, partition mounting options, entropy sources, and physical security measures.

Hardeningbootfirewall
0 likes · 51 min read
Comprehensive Linux Hardening Guide: Kernel, Sysctl, Boot Parameters, and Security Best Practices