常用的linux命令組合

來源:互聯網
上載者:User

常用的linux命令組合 序號 任務 命令組合1 刪除0位元組檔案 find . -type f -size 0 -exec rm -rf {} \;find . type f -size 0 -delete2 查看進程,按記憶體從大到小排列 ps -e -o “%C : %p : %z : %a”|sort -k5 -nr3 按cpu利用率從大到小排列 ps -e -o “%C : %p : %z : %a”|sort -nr4 列印說cache裡的URL grep -r -a jpg /data/cache/* | strings | grep “http:” | awk -F’http:’ ‘{print “http:”$2;}’5 查看http的並發請求數及其TCP串連狀態 netstat -n | awk ‘/^tcp/ {++S[$NF]} END {for(a in S) print a, S[a]}’6 sed在這個文裡Root的一行,匹配Root一行,將no替換成yes。 sed -i ‘/Root/s/no/yes/’ /etc/ssh/sshd_config7 如何殺掉mysql進程 ps aux |grep mysql |grep -v grep  |awk ‘{print $2}’ |xargs kill -9killall -TERM mysqldkill -9 `cat /usr/local/apache2/logs/httpd.pid`8 顯示運行3層級開啟的服務(從中瞭解到cut的用途,截取資料) ls /etc/rc3.d/S* |cut -c 15-9 如何在編寫SHELL顯示多個資訊,用EOF cat << EOF+————————————————————–+|   === Welcome to Tunoff services ===                         |+————————————————————–+EOF10 for的用法(如給mysql建軟連結) cd /usr/local/mysql/binfor i in *do ln /usr/local/mysql/bin/$i /usr/bin/$idone11 取IP地址 ifconfig eth0 |grep “inet addr:” |awk ‘{print $2}’|cut -c 6-ifconfig | grep ‘inet addr:’| grep -v ’127.0.0.1′ |cut -d: -f2 | awk ‘{ print $1}’12 記憶體的大小 free -m |grep “Mem” | awk ‘{print $2}’13 查看80連接埠的串連,並排序 netstat -an -t | grep “:80″ | grep ESTABLISHED | awk ‘{printf “%s %s\n”,$5,$6}’ | sort14 查看Apache的並發請求數及其TCP串連狀態 netstat -n | awk ‘/^tcp/ {++S[$NF]} END {for(a in S) print a, S[a]}’15 統計一下伺服器下面所有的jpg的檔案的大小 find / -name *.jpg -exec wc -c {} \;|awk ‘{print $1}’|awk ‘{a+=$1}END{print a}’16 CPU的數量 cat /proc/cpuinfo |grep -c processor17 CPU負載 cat /proc/loadavg18 CPU負載 mpstat 1 119 記憶體空間 free20 磁碟空間 df -h21 如發現某個分區空間接近用盡,可以進入該分區的掛載點,用以下命令找出佔用空間最多的檔案或目錄 du -cks * | sort -rn | head -n 1022 磁碟I/O負載 iostat -x 1 223 網路負載 sar -n DEV24 網路錯誤 netstat -icat /proc/net/dev25 網路連接數目 netstat -an | grep -E “^(tcp)” | cut -c 68- | sort | uniq -c | sort -n26 進程總數 ps aux | wc -l27 查看進程樹 ps aufx28 可運行進程數目 vmwtat 1 529 檢查DNS Server工作是否正常,這裡以61.139.2.69為例 dig www.baidu.com @61.139.2.6930 檢查當前登入的使用者個數 who | wc -l31 日誌查看、搜尋 cat /var/log/rflogview/*errorsgrep -i error /var/log/messagesgrep -i fail /var/log/messagestail -f -n 2000 /var/log/messages32 核心日誌 dmesg33 時間 date34 已經開啟的控制代碼數 lsof | wc -l35 網路抓包,直接輸出摘要資訊到檔案。 tcpdump -c 10000 -i eth0 -n dst port 80 > /root/pkts36 然後檢查IP的重複數 並從小到大排序 注意 “-t\  +0″ 中間是兩個空格,less命令的用法。 less pkts | awk {‘printf $3″\n”‘} | cut -d. -f 1-4 | sort | uniq -c | awk {‘printf $1″ “$2″\n”‘} | sort -n -t\  +037 kudzu查看網卡型號 kudzu –probe –class=network  

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.