Skip to content
cheatsheet
home
/
cv
/
weblog
/
cheatsheet
/
proxy
/
vpn
/
status
/
links
EN
RU
☾
New version available
reload
×
cheatsheet
/
linux
/
Watch disk I/O
Watch disk I/O
linux
Show extended disk I/O statistics updated every second
iostat -xz 1
⎘ copy
#linux
#disk
#io
#iostat
more linux
all 133 commands →
Show process tree
pstree -p
TCP/IP tuning — backlog
sysctl -w net.core.somaxconn=65535
Show CPU info
lscpu
Find large files
find / -type f -size +100M -exec ls -lh {} \; 2>/dev/null | sort -k5 -rh | head -20
Disk usage per directory
du -sh /* 2>/dev/null | sort -rh | head -15