Skip to content
cheatsheet
home
/
cv
/
weblog
/
cheatsheet
/
proxy
/
vpn
/
status
/
links
EN
RU
☾
New version available
reload
×
cheatsheet
/
linux
/
Show inode usage
Show inode usage
linux
Show inode usage per filesystem (important for many small files)
df -i
⎘ copy
#linux
#filesystem
#inode
#df
more linux
all 133 commands →
Find large files
find / -type f -size +100M 2>/dev/null | sort
Show open file descriptors
cat /proc/$(pgrep myapp)/fd | wc -l
Check SELinux status
getenforce
List cron jobs (system)
ls /etc/cron.* /var/spool/cron/crontabs/
Show environment variables
printenv | sort