Bind process to CPU cores linux
Pin a running process to specific CPU cores
taskset -cp 0,1 <pid>
more linux
all 133 commands →
Show hardware interrupts
watch -n1 'cat /proc/interrupts | head -30'
Show process limits
cat /proc/<pid>/limits
Increase system file descriptor limit
ulimit -n 1048576 && echo '* soft nofile 1048576
* hard nofile 1048576' >> /etc/security/limits.conf
Show inode usage
df -i
Find large files
find / -type f -size +100M 2>/dev/null | sort