Привязать процесс к ядрам linux
Привязать процесс к определённым ядрам CPU
taskset -cp 0,1 <pid>
more linux
all 133 commands →
Аппаратные прерывания
watch -n1 'cat /proc/interrupts | head -30'
Лимиты процесса
cat /proc/<pid>/limits
Увеличить лимит файловых дескрипторов
ulimit -n 1048576 && echo '* soft nofile 1048576
* hard nofile 1048576' >> /etc/security/limits.conf
Показать использование inode
df -i
Найти большие файлы
find / -type f -size +100M 2>/dev/null | sort