linux 查看系统资源命令

  • vmstat
vmstat 1 3  #每隔一秒刷新3次
  • lsof
lsof | more  #process->file
lsof | /sbin/init  #file->process
lsof -c httpd  #httpd process ->file
lsof -u root  #user    root    -> file
原文地址:https://www.cnblogs.com/binxyz/p/8072125.html