Linux常用指令

cp 複製檔案

-r 或 -R (recursive-遞迴)復製時包含子目錄

ex. cp -r /home/root/. /tmp

mv 搬移檔案(也可做更名用)

如果要搬移整個目錄,則需要在最後加上/ 代表整個目錄

mv /home/root/ /tmp/

更改目錄及其底下目錄owner及group

sudo chown -hR wordpress:apache

解壓縮tar gz

tar zxvf filename.tar.gz

壓縮tar gz

tar zcvf filenam.tar.gz pathdir

更改目錄下所有檔案權限

find . -type f -exec chmod 664 {} +

更改目錄下所有目錄權限

find . -type d -exec chmod 664 {} +

更改目錄下所有檔案及目錄user及group

find /opt/tomcat/webapps/ROOT -exec chown tomcat:tomcat {} +

TCP連線數可透過以下指令檢視:(web http ftp)

netstat -ant | grep :80 | wc -l

netstat -n -p | grep :21 | sort -u

將test2子目錄及子目錄中所有檔案刪除,並且不用一一確認

rm -rf test2

發表迴響