我常用的linux命令
1.文件赋权 chmod
2.查看端口占用 lsof -i:{prot}
3.结束进程 kill -9 {pid}
4.执行sh文件 bash XX.sh
5.查看cpu top
6.查看软硬中断 watch -d cat /proc/interrupts
7.查看上下文进程切换 pidstat -w -p
8.内存指标 free -m
9.缺页中断 sar -B 1 10
10.查看全连接队列 ss -t -a |grep {prot}
11.查看内存GC情况 jstat -gcutil {pid} 10