We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b808ca3 commit c103c78Copy full SHA for c103c78
1 file changed
studynotes/Linux常用操作命令.md
@@ -22,6 +22,7 @@
22
* 查看网络状态 **:netstat -n | awk '/^tcp/ {++S[$NF]} END {for(a in S) print a, S[a]}'**
23
* linux下取进程占用cpu最高的前10个进程 **:ps aux|head -1;ps aux|grep -v PID|sort -rn -k +3|head**
24
* 查看磁盘占用 **:iostat -xdk 1**
25
+* 查看磁盘占用 **:df -lh**
26
* nohup后台不打印解决 **:nohup python -u test.py > nohup.out 2>&1 &**
27
* 查看防火墙状态 **:service iptables status**
28
* 开启防火墙 **:service iptables start**
0 commit comments