【LINUX】linux 常用命令精選_之一
話不多說,溫馨提示,常用命令,也會排除cd、pwd之類的
更詳細命令使用 可man一下,例如 man ls
1、查詢網口
ethtool -p eth0 此時伺服器網口燈會亮
2、網路卡資訊
ethtool eth0
3、測試磁碟讀寫
dd if=/dev/zero of=/home/oracle/my_test.iso bs=8k count=20000 conv=fdatasync
4、裸裝置大小
blockdev --getsize /dev/raw/raw1
11718750
11718750表示有多少OS BLIOCK。
一般一個OS BLOCK大小是512位元組,所以11718750*512/1024/1024/1024 = 5722(m) 就是裸裝置的大小
5、批次替換檔案中字串
sed -i "s/oldstr/newstr/g" `grep oldstr -rl /home/oracle/test/*`
6、顯示所有有活動程式的使用者
ps -eo user |sort -u
7、把檔案內容變成一行
cat filename |tr -d "\n"
8、過濾點檔案中的註釋
cat filename | grep -v '#'
9、清理空行
sed '/^$/d' /tmp/test.txt > /tmp/testnew.txt
10、顯示記憶體佔用前十的程式
ps aux |sort -nk +4|tail
11、遞迴ls
ls -lR .
12、載入映象檔案
mount -t iso9660 -o loop test.iso /mnt
13、尋找檔案中重複的行
cat test.txt |sort |uniq -dc
14、監視一個埠的連線
watch -n 1 'netstat -tn |grep -P :22'
15、顯示當前啟用的tcp連線
netstat -plnt
16、按照cpu使用率列出程式
ps -ef --sort=-%cpu |more
或
ps aux |sort -nk 3 |more
17、顯示發行版
cat /proc/version
18、 查詢誰開的埠號
lsof -i :22
19、cpu資源使用情況
mpstat -P ALL 2 2
20、以表格形式輸出內容
mount |column -t
cat /etc/passwd|column -t -s: #以':'為分割符
21、將檔案內容轉化為大寫
cat text.txt |tr a-z A-Z > output.txt
22、列出所有埠為22的連線
ss state all sport = :ssh
23、比較檔案內容
diff text01.txt text02.txt
24、檢測小命令,預設每兩秒執行一次
watch 例如,兩秒舒服一次系統的平均負載
watch -n 10 'cat /proc/loadavg'
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29487349/viewspace-2146388/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- linux網址精選Linux
- linux網址精選(轉)Linux
- 【Linux】Linux基本常用命令Linux
- Linux-Linux常用命令Linux
- 常用命令[Linux]Linux
- Linux 常用命令Linux
- Linux常用命令Linux
- Linux常用命令使用Linux
- Linux裡常用命令Linux
- Linux常用命令整理Linux
- Linux 的常用命令Linux
- Linux常用命令大全Linux
- Linux的常用命令Linux
- Linux常用命令分享Linux
- linux常用命令速查Linux
- Linux——常用命令整理Linux
- Linux-常用命令Linux
- Linux常用命令全名Linux
- Linux 常用命令2Linux
- Linux GCC常用命令LinuxGC
- 轉linux常用命令Linux
- linux之常用命令Linux
- Linux 常用命令整理Linux
- linux常用命令(轉)Linux
- linux 不常用命令Linux
- Linux下常用命令Linux
- Linux 常用命令合集Linux
- linux vim 常用命令Linux
- Linux(1) linux入門以及常用命令Linux
- Linux入門(二) ~ Linux的常用命令Linux
- linux之shell命令之一Linux
- linux之shell awk 之一Linux
- Linux精講——find命令Linux
- Linux精講——usermod命令Linux
- Linux精講——sudo命令Linux
- Linux精講——df命令Linux
- Linux精講——du命令Linux
- Linux 運維常用命令Linux運維