Skip to content
cheatsheet
home
/
cv
/
weblog
/
cheatsheet
/
proxy
/
vpn
/
status
/
links
EN
RU
☾
New version available
reload
×
cheatsheet
/
linux
/
Show environment variables
Show environment variables
linux
Display all environment variables sorted alphabetically
printenv | sort
⎘ copy
#linux
#env
#shell
more linux
all 133 commands →
Watch disk I/O
iostat -xz 1
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