Linux 常用命令行工具

查看网络

iftop
file
ifstat
file
nload
file
nethogs
file

查看系统利用率

top
file
参数:
file
htop
file
ps

ps -ef #显示所有当前进程
ps aux #显示所有当前进程
ps -ax #显示所有当前进程
ps -u pungki #根据用户过滤进程
ps -aux --sort -pcpu | less #根据 CPU 使用来升序排序
ps -aux --sort -pmem | less #根据用户过滤进程
ps -aux --sort -pcpu,+pmem | head -n 10 #查询全10个使用cpu和内存最高的应用
ps -C getty #通过进程名和PID过滤
ps -f -C getty #带格式显示的,通过进程名和PID过滤
ps -L 1213 #根据线程来过滤进程
ps -axjf(或pstree) #树形显示进程
ps -eo pid,user,args # 显示安全信息
ps -U root -u root u #格式化输出 root 用户(真实的或有效的UID)创建的进程

查看内存占用

free
file
vmstat
file

查看磁盘占用

df -h
file
du
file
参数:
file
ncdu
file
iotop
file
fdisk -l |grep Disk
file

发表回复

登录... 后才能评论