Home System Tutorial LINUX Linux System Performance Tuning: Optimizing CPU, Memory, and Disk

Linux System Performance Tuning: Optimizing CPU, Memory, and Disk

Mar 26, 2025 am 09:02 AM

Linux System Performance Tuning: Optimizing CPU, Memory, and Disk

Introduction

Linux is a powerful and flexible operating system, widely used in servers, embedded systems and even personal computers. However, even the best-configured system can face performance bottlenecks over time. Performance tuning is crucial to ensuring efficient operation of Linux systems, which can optimize resource utilization and avoid unnecessary slowdowns.

This guide provides a Linux performance tuning method that focuses on three key areas: CPU, memory, and disk optimization. Whether you are a system administrator, DevOps engineer, or Linux enthusiast, understanding and implementing these optimizations will help increase system response, reduce resource waste, and ensure the system runs smoothly.

Understand system performance indicators

Before you can further optimize, be sure to understand system performance metrics. Monitoring these metrics allows us to diagnose performance issues and make informed adjustment decisions.

Key Performance Indicators (KPIs) - CPU Usage: The percentage of CPU time taken by the process.

  • Average load: the number of processes waiting for CPU time.
  • Memory Usage: The amount of used and available RAM.
  • Disk I/O Waiting: The time the process waits for disk access.
  • Swap partition usage: The amount of virtual memory being used.
  • Context Switch: Number of process switching times per second.
  • Disk Throughput: Read/write speed and latency.

Performance Monitoring Tool Linux provides a variety of tools to measure these metrics:

  • CPU and memory monitoring: top, htop, mpstat
  • Disk performance analysis: iostat, iotop, dstat
  • System-level monitoring: vmstat, sar
  • Performance analysis and tracking: perf, strace
  • Process and resource management: nice, ulimit, cgroups

CPU performance tuning

CPU bottlenecks can occur due to high process load, inefficient scheduling, or contention for CPU resources. Here is how to optimize CPU performance.

Identify CPU bottlenecks Use the following command to diagnose CPU problems:

top htop mpstat -P ALL 1 sar -u 5

  • High load average and low CPU usage indicate I/O waiting issues.
  • High CPU usage represents CPU-intensive processes.

Optimized Process Scheduling Linux uses a Fully Fair Scheduler (CFS) to allocate CPU time. You can manually adjust process priorities using the following command:

nice -n 10 process_name renice -n -5 -p PID

Use taskset to bind the process to a specific CPU:

taskset -c 0,1 process_name

Limit CPU Usage To prevent processes from consuming too much CPU, please use cpulimit:

cpulimit -l 50 -p PID

For containerized environments, use cgroups:

cgcreate -g cpu:/limitedgroup echo 50000 > /sys/fs/cgroup/cpu/limitedgroup/cpu.cfs_quota_us cgexec -g cpu:limitedgroup process_name

Kernel parameter tuning and adjusting kernel parameters can improve CPU efficiency:

sysctl -w kernel.sched_min_granularity_ns=10000000 sysctl -w kernel.sched_wakeup_granularity_ns=15000000

Memory performance optimization

Memory issues can severely slow down the system, resulting in overswitching and high latency.

Diagnosing memory usage Use these tools to check memory statistics:

free -m vmstat 5 smem

Find high swap partition usage (si and so in vmstat), which indicates memory pressure.

Optimize swap partition usage - Check swap partition performance:

swapon -s

  • Adjust the tendency of swap partitions:

sysctl -w vm.swappiness=10

  • Use compression swap partitions zswap or zram:

modprobe zram echo 1 > /sys/block/zram0/reset

Manage caches and buffers To free up memory, clear unused caches:

sync; echo 3 > /proc/sys/vm/drop_caches

Adjust kernel buffer behavior:

sysctl -w vm.dirty_ratio=20 sysctl -w vm.dirty_background_ratio=5

Big Page Optimization For applications such as databases, enable Big Pages:

echo 1024 > /proc/sys/vm/nr_hugepages

Disk I/O performance tuning

Disk performance is critical to databases, file servers, and applications that handle large amounts of data.

Measure disk performance - Check I/O activity:

iostat -x 5 iotop

  • Benchmark disk performance:

fio --name=seqwrite --rw=write --bs=128k --size=1G --numjobs=4 --runtime=60

File system optimization - Use optimized file systems (ext4, XFS, btrfs).

  • Enable logging only if needed:

tune2fs -O has_journal /dev/sdX

  • Use noatime and nodiratime mount options:

mount -o remount,noatime,nodiratime /dev/sdX /mnt

Disk Scheduler Optimizes I/O Scheduler for Change of SSD:

echo noop > /sys/block/sda/queue/scheduler

For HDD:

echo cfq > /sys/block/sda/queue/scheduler

RAID and LVM Optimization - Use RAID 10 for better read/write performance.

  • Optimize LVM striping:

lvcreate -i 2 -I 256 -L 10G -n lv_name vg_name

SSD Optimization - Enable TRIM:

fstrim -v /

  • Optimize mount settings:

mount -o discard,defaults /dev/sdX /mnt

General system optimization strategy

  • Adjust kernel parameters:

sysctl -w net.core.somaxconn=1024 sysctl -w fs.file-max=100000

  • Use ulimit to prevent resource exhaustion:

ulimit -n 100000

  • Disable unnecessary services:

systemctl disable service_name

Performance Tuning Case Study

High CPU load on web server - High php-fpm CPU usage is identified.

  • Use taskset to allocate the load.
  • Implementing caching reduces CPU usage by 40%.

Excess Disk I/O on Database Server - Move logs to separate disks.

  • Optimize PostgreSQL shared_buffers and work_mem.
  • Switching to SSD increases query time by 60%.

in conclusion

Performance tuning is an ongoing process involving monitoring, analysis and optimization. By following the best practices outlined in this guide, you can ensure that your Linux system runs smoothly and efficiently.

The above is the detailed content of Linux System Performance Tuning: Optimizing CPU, Memory, and Disk. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Mastering Text Manipulation With the Sed Command Mastering Text Manipulation With the Sed Command Mar 16, 2025 am 09:48 AM

The Linux command line interface provides a wealth of text processing tools, one of the most powerful tools is the sed command. sed is the abbreviation of Stream EDitor, a multi-functional tool that allows complex processing of text files and streams. What is Sed? sed is a non-interactive text editor that operates on pipeline inputs or text files. By providing directives, you can let it modify and process text in a file or stream. The most common use cases of sed include selecting text, replacing text, modifying original files, adding lines to text, or removing lines from text. It can be used from the command line in Bash and other command line shells. Sed command syntax sed

Pilet: A Modular, Portable Mini-Computer Powered by Raspberry Pi Pilet: A Modular, Portable Mini-Computer Powered by Raspberry Pi Mar 06, 2025 am 10:11 AM

Discover Pilet: A Retro-Futuristic, Open-Source Mini-Computer Looking for a mini-computer that blends classic style with cutting-edge technology? Meet Pilet, a modular, open-source marvel powered by the Raspberry Pi 5. Boasting a 7-hour battery life

How To Count Files And Directories In Linux: A Beginner's Guide How To Count Files And Directories In Linux: A Beginner's Guide Mar 19, 2025 am 10:48 AM

Efficiently Counting Files and Folders in Linux: A Comprehensive Guide Knowing how to quickly count files and directories in Linux is crucial for system administrators and anyone managing large datasets. This guide demonstrates using simple command-l

How To Add A User To Multiple Groups In Linux How To Add A User To Multiple Groups In Linux Mar 18, 2025 am 11:44 AM

Efficiently managing user accounts and group memberships is crucial for Linux/Unix system administration. This ensures proper resource and data access control. This tutorial details how to add a user to multiple groups in Linux and Unix systems. We

The Secret Weapon to Supercharge Your Linux System With Liquorix Kernel The Secret Weapon to Supercharge Your Linux System With Liquorix Kernel Mar 08, 2025 pm 12:12 PM

Liquorix kernel: a powerful tool to improve Linux system performance Linux is known for its flexibility, security and high performance, becoming the operating system of choice for developers, system administrators, and advanced users. However, the universal Linux kernel is not always meeting the needs of users seeking maximum performance and responsiveness. This is where the Liquorix kernel comes into play—a performance-optimized alternative that promises to enhance your Linux system. This article will explore what the Liquorix kernel is, why you might want to use it, and how to install and configure it to get the most out of your system. Liquorix kernel detailed explanation Liquorix kernel is a precompiled Linux kernel designed for

How To Type Indian Rupee Symbol In Ubuntu Linux How To Type Indian Rupee Symbol In Ubuntu Linux Mar 22, 2025 am 10:39 AM

This brief guide explains how to type Indian Rupee symbol in Linux operating systems. The other day, I wanted to type "Indian Rupee Symbol (₹)" in a word document. My keyboard has a rupee symbol on it, but I don't know how to type it. After

How To List Or Check All Installed Linux Kernels From Commandline How To List Or Check All Installed Linux Kernels From Commandline Mar 23, 2025 am 10:43 AM

Linux Kernel is the core component of a GNU/Linux operating system. Developed by Linus Torvalds in 1991, it is a free, open-source, monolithic, modular, and multitasking Unix-like kernel. In Linux, it is possible to install multiple kernels on a sing

How To Keep Your Linux System Awake With Keep-Alive How To Keep Your Linux System Awake With Keep-Alive Mar 06, 2025 am 11:13 AM

Keep your computer awake effortlessly with Keep-Alive! This lightweight tool prevents your system from sleeping, ideal for long downloads, continuous processes, or simply maintaining system activity. Compatible with Linux, macOS, and Windows, Keep-

See all articles