Skip to content
cheatsheet
home
/
cv
/
weblog
/
cheatsheet
/
proxy
/
vpn
/
status
/
links
EN
RU
☾
New version available
reload
×
cheatsheet
/
linux
/
Show CPU info
Show CPU info
linux
Display CPU architecture and core count information
lscpu
⎘ copy
#linux
#cpu
#hardware
#lscpu
more linux
all 133 commands →
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
Check open ports
ss -tlnp
Find process by port
ss -tlnp | grep :<port>
CPU usage per process
ps aux --sort=-%cpu | head -15