|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
欢迎大家来到仓酷云论坛!1.按内存从年夜到小分列历程:
ps-eo"%C:%p:%z:%a"|sort-k5-nr
2.检察以后有哪些历程;检察历程翻开的文件:
ps-A;lsof-pPID
3.猎取以后IP地点(从中进修grep,awk,cut的感化)
ifconfigeth0|grep"inetaddr:"|awk{print$2}|cut-c6-
4.统计每一个单词呈现的频次,并排序
awk{arr[$1]+=1}END{for(iinarr){printarr" "i}}文件名|sort-rn
5.显现10条最经常使用的下令
sed-e"s/|/
/g"~/.bash_history|cut-d-f1|sort|uniq-c|sort-nr|head
6.杀逝世Nginx历程(杀逝世某一历程)
ps-ef|grep-vgrep|grepnginx|awk{print$2}或
foriin`psaux|grepnginx|grep-vgrep|awk{print$2}`;dokill$i;done
7.列出以后文件夹目次巨细,以G,M,K显现。
du-b--max-depth1|sort-nr|perl-pes{([0-9]+)}{sprintf"%.1f%s",$1>=2**30?($1/2**30,"G"):$1>=2**20?($1/2**20,"M"):$1>=2**10?($1/2**10,"K"):($1,"")}e
shaw谜底:du-hs$(du-sk./`ls-F|grep/`|sort-nr|awk{print$NF})
也可以完成,不外不是出格完善。但好记。
8.清空linuxbuffercache
sync&&echo3>/proc/sys/vm/drop_caches
9.将以后目次文件名全体转换成小写
foriin*;domv"$i""$(echo$i|trA-Za-z)";done
10.打消vim中的^M的几种***
1)dos2uninxfilename
2)sed-es/^M//filename
3)vim中:s/^M//gc
4)col-bx<dosfile>newfile
5)tr-s"
""
"<file>newfile
11.扫除一切arp缓存
arp-n|awk/^[1-9]/{print"arp-d"$1}|sh
12.绑定已知呆板的arp地点
cat/proc/net/arp|awk{print$1""$4}|sort-t.-n+3-4>/etc/ethers
13.perl-nem/^([^#][^s=]+)s*(=.*|)/&&printf("%-35s%s
",$1,$2)/etc/my.cnf
14、不同意某个用户利用rm下令
[root@localhostpp]#setfacl-mu:pp:000/bin/rm
[root@localhostpp]#su-pp
[pp@localhost~]$mkdirtest
[pp@localhost~]$rm-rftest/
-bash:/bin/rm:权限不敷
修正返来下令
[pp@localhost~]$suroot
口令:
[root@localhostpp]#setfacl-mu:pp:rwx/bin/rm
[root@localhostpp]#su-pp
[pp@localhost~]$rm-rftest/
[pp@localhost~]$
15、打包扫除目次利用
tarzcvffamily.tar.gz./family/*--exclude=./family/1/ss/attachments--exclude=./family/1/ss/bbs/attachments
16、linux下利用下令行形式上传文件夹
ncftpput-R-uuser-ppasswd-P21192.168.1.1/home/test//root/test(底本地目次)
4、检察占用内存最多的前15个步伐
ps-aux|awk{print$4" "$11}|grep-vMEM|sort-r|uniq-c|head-15
ps(shift+M检察占用内存,shift+p检察cpu)
欢迎大家来到仓酷云论坛! |
|