1.1 建立刪除檔案
1.2 建立刪除軟連線
linux下的軟鏈結類似於windows下的快捷方式。常用於實際路徑很深,每次進入的時候需要花費一定時間,此時我們在根目錄建立乙個軟鏈結指向該目錄,那麼我們進入該軟連線其實就是進入了軟鏈結指向的實際目錄。
1
ln -s /data/elastic/plugin/ik/custom myes
1.3 重定向命令
1.4 檢視檔案大小
2.1 管道過濾
2.2 查詢命令
在path
變數指定的路徑中,搜尋某個系統命令的位置,並且返回第乙個搜尋結果
123
# `-a`:將所有由`path`目錄中可以找到的命令均列出來,而不是只列出第乙個被找到的命令[root@www ~] # which ifconfig
/sbin/ifconfig
只能用於程式名的搜尋,而且只搜尋二進位制檔案(引數-b
)、man
說明檔案(引數-m
)和源**檔案(引數-s
)
1
whereis [-bmsu] 檔案或目錄名
1234
[root@www ~] # whereis ifconfigifconfig: /sbin/ifconfig /usr/share/man/man8/ifconfig.8.gz
[root@www ~] # whereis -m ifconfig
ifconfig: /usr/share/man/man8/ifconfig.8.gz
相當於find -name
,可快速查詢檔案
1
locate [-ir] keyword
12345
[root@www ~] # locate passwd/etc/passwd
/etc/passwd-
/etc/news/passwd.nntp
/etc/pam.d/passwd
最常用和最強大的查詢命令,可以用它找到任何想找的檔案
1
find [path] [option] [action]
find引數:基於檔名的搜尋
1
[root@www ~] # find / -name passwd
查詢檔案名為passwd
的檔案
find引數:基於檔案大小的搜尋
其中,size的單位有
1234
[root@www ~] # find . -type f -size +10k搜尋大於10kb的檔案
[root@www ~] # find . -type f -size 10k
搜尋等於10kb的檔案
注意複製
複製多行
複製當前到行尾的內容
貼上
選擇複製
刪除剪下至行首
剪下至行尾
搜尋/
搜尋的關鍵字,按n
切換下乙個關鍵字
pstree
linux
中,每乙個程序都是由其父程序建立的。此命令以視覺化方式顯示程序,通過顯示程序的樹狀圖來展示程序間關係
top
7.2 防火牆相關
linux
檢視防火牆狀態及開啟關閉命令
1234567
8910
# 檢視防火牆狀態[root@centos6 ~]# service iptables status
# 開啟防火牆
[root@centos6 ~]# service iptables start
# 關閉防火牆
[root@centos6 ~]# service iptables stop
iptables方式
1234567
8910
[root@centos6 ~]# cd /etc/init.d/# 檢視狀態
[root@centos6 init.d]# /etc/init.d/iptables status
# 暫時關閉防火牆
[root@centos6 init.d]# /etc/init.d/iptables stop
# iptables
[root@centos6 init.d]# /etc/init.d/iptables restart
上傳本地目錄到遠端機器指定目錄(拷貝目錄帶上-r
,遞迴複製)
9.1 cpu管理
只顯示一行對應的cpu型號以及其他資訊
系統有幾個核就會顯示幾行
統計出一共有多少核
9.2其他
檢視更為底層的版本資訊:cat /proc/version
Linux日常命令使用記錄
scp在跨機器複製的時候為了提高資料的安全性,使用了ssh連線和加密方式,如果機器之間配置了ssh免密碼登入,那在使用scp的時候密碼都不用輸入。在伺服器104.238.161.75上操作,將伺服器104.238.161.75上 home lk 目錄下所有的檔案全部複製到43.224.34.73的 ...
linux 日常命令
目錄切換 cd 目錄名稱 cd cd cd 使用者切換 su user 刪除檔案或目錄 rm f 檔名稱 rm rf 目錄名稱 rm rf 檔名稱1 檔名稱2 ps 刪除除檔案12以外的其它檔案 find name o xargs rm f ps 刪除當前目錄下以.o結尾的所有檔案 拷貝檔案或目錄 ...
Linux日常命令
linux 日常簡單命令彙總 tar xzf apache tomcat 8.0.35.tar.gz tar檔案解壓 tar xzcf 檔名.tar.gz zip檔案解壓 uzip 檔名.zip 文字檢視 無法編輯 cat 檔名.txt xml html 文字配置檔案等 tomcat後台日誌動態檢視...