四. 磁盘信息
9. 当前挂载的文件系统信息,包括fs类型和挂载点等信息
mount -l
10. 当前磁盘信息,比如分区和大小
fdisk -l
11. 当前文件系统信息,包括使用百分比和挂载点
df -h
12. 当前挂载的文件系统信息缓存文件
cat /etc/mtab
13. 挂载文件系统的配置文件
cat /etc/fstab 五. 进程信息
14. 系统的限制信息
ulimit -a
15. ten processes catch most CPU resource
ps aux | sort -k 3 -r | head -11
16. ten processes catch most Memory resource
ps aux | sort -k 4 -r | head -11
六. 其它信息
17. current modules and referenced counter
lsmod
18. top综合信息,按数字1可以查看每个核的CPU使用率
top
19. all process info,可以跟ps aux对比下
ps -ef
20. 系统启动日志,直接执行dmesg也可
cat /var/log/dmesg