标签:用户 性能 user pid ls -lh buffered 表示 XA cpu
man help 查看帮助
命令 -help 查看某个命令的帮助信息
find / -name “文件名” 查找文件所在的地址 (文件名前后可加*,表示文件名前后可有其他字符串)
find / -size +10M | xargs ls -lh 将查询到的文件全部显示大小
xargs
df 查看磁盘使用情况
df -h 查看磁盘使用时,大小显示为G/M
kill 某个pid(进程号) 结束进程
top 查看系统性能
cpu:
user 用户进程所占的cpu
system 操作系统本身所占cpu
idle cpu空闲率
iowait cpu等待io的时间比
mem(memory):
total:1000M
usage:内存使用 800M
free:内存空闲 200M
cached:缓存500M
buffered:即将使用的缓存40M
total free mem = free + cached + buffered = 740M
total usage = 1000M - 740M =260M
标签:用户 性能 user pid ls -lh buffered 表示 XA cpu
原文地址:https://www.cnblogs.com/xiaomakeji/p/8874675.html