首页 > 代码库 > CentOS 命令【备忘】

CentOS 命令【备忘】

1、查看物理cpu个数

grep ‘physical id‘ /proc/cpuinfo | sort -u | wc -l

2、查看核心数量

grep ‘core id‘ /proc/cpuinfo | sort -u | wc -l

3、查看目录大小

du -hs /usr/local/openresty

4、查看目录下级各目录大小

du -h --max-depth=1 /usr/local/openresty/

du -h --max-depth=1 /usr/local/openresty/*

 

CentOS 命令【备忘】