标签:实用 arp 测试工具 buffer pstree iptables tab 压力测试 tree
进程树pstree -p
可以查看父进程和子进程,以及pid编号
ps aux 查看系统终端和非终端的资源使用
ps axo user,ruser,pid,%cpu,%mem k %mem 只查看选定的参数,并以mem排序
查看PID:1254进程的详细信息
nice -n 10 curl 192.168.179.133:8888 指定优先级
renice -n 1 1254 重设优先级
pgrep
-u 查看生效用户
-U 查看真实用户
-t 查看终端运行进程
-l 进程名称
-a 详细显示
-p 显示子进程
pidof -x test.sh (查看后台脚本运行的pid)
iftop -ni eth0
arp -n 查看ip对应的mac地址
iptables-A INPUT -m mac --mac-source XX:XX:XX:XX:XX:XX -j DROP
cache是缓存,buffer是缓冲
标签:实用 arp 测试工具 buffer pstree iptables tab 压力测试 tree
原文地址:https://blog.51cto.com/13434656/2524450