目录
Linux常用命令
根据进程名查看进程信息
PS:命令相当于Windows的任务管理器
ps -aux|grep 进程名字
ps -aux 查看所有进程
ps aux | grep kafka
ps -ef | grep kafka
根据进程id查看进程信息
ps -ef | grep 1001
根据端口查看进程id
lsof -i:8090
netstat -tunlp | grep 8090
根据进程id查看进程占用端口
netstat -anop | grep PID
根据进程id杀死进程
kill -9 1100
CPU占用最多的前10个进程
ps auxw | head -1;ps auxw | sort -rn -k3 | head -10
内存消耗最多的前10个进程
ps auxw | head -1;ps auxw|sort -rn -k4 | head -10
虚拟内存使用最多的前10个进程
ps auxw | head -1;ps auxw | sort -rn -k5 | head -10
查看日志类命令cat、less、more、tail、head
查看CPU使用率、内存使用率、磁盘使用率
https://www.cnblogs.com/edgedance/p/7044753.html
Vi、Vim使用
性能监测工具dstat
CPU信息查询
cat /proc/cpuinfo(或者top 然后1)
内存信息查询Free
Linux curl命令详解
https://www.cnblogs.com/fan-gx/p/12321351.html