linux如何關閉防火牆

2022-06-18 18:12:12 字數 3450 閱讀 4218

1) 重啟後生效 

開啟: chkconfig iptables on 

關閉: chkconfig iptables off 

2) 即時生效,重啟後失效 

開啟: service iptables start 

關閉: service iptables stop 

需要說明的是對於linux下的其它服務都可以用以上命令執行開啟和關閉操作。 

在開啟了防火牆時,做如下設定,開啟相關埠, 

修改/etc/sysconfig/iptables 檔案,新增以下內容: 

-a rh-firewall-1-input -m state --state new -m tcp -p tcp --dport 80 -j accept 

-a rh-firewall-1-input -m state --state new -m tcp -p tcp --dport 22 -j accept

chmod -r 777 /path/*

mv *./html /路徑

tail -f /var/log/messages

cat log 

less log

more log 

tailf log (時時檢視列印日誌)

mv *./html /路徑

從 本地 複製到 遠端 

scp /home/daisy/full.tar.gz [email protected]:/home/root (然後會提示你輸入另外那台172.19.2.75主機的root使用者的登入密碼,接著就開始copy了),複製目錄加引數 -r 即可 

從 遠端 複製到 本地 

scp root@/172.19.2.75:/home/root/full.tar.gz /home/daisy/full.tar.gz

傳資料夾 用-r引數 否則有 not a regular file錯誤

scp -r bdump [email protected]:bdump

ssh  [email protected]

chmod 777 xampp-linux-x64-5.6.14-0-installer.run

systemctl status vsftpd

在home目錄下有wwwroot目錄,wwwroot下有sinozzz目錄,即/home/wwwroot/sinozzz

一、目錄建立

在/home/wwwroot目錄下新建乙個sinozzz123的資料夾

mkdir /home/wwwroot/sinozzz123

二、目錄複製

1.把/home/wwwroot/sinozzz裡面的檔案和資料夾等複製到home/wwwroot/sinozzz123目錄下

cp -rf /home/wwwroot/sinozzz/* /home/wwwroot/sinozzz123

2.把/home/wwwroot/sinozzz123/abc/下的資料夾和檔案複製到home/wwwroot/sinozzz123目錄下

cp -rf /home/wwwroot/sinozzz123/abc/* /home/wwwroot/sinozzz123

3.把/home/wwwroot/sinozzz目錄複製到/home/wwwroot/sinozzz123目錄下,即把sinozzz複製變成sinozzz123的子目錄,變成/home/wwwroot/sinozzz123/sinozzz的路徑

cp -rf /home/wwwroot/sinozzz /home/wwwroot/sinozzz123

三、目錄剪下

1.使用mv命令剪下檔案。

如需要將/home/wwwroot/sinozzz123/music/目錄下的1.***檔案剪下到/home/wwwroot/sinozzz123/abc目錄下,執行下面的命令即可:

# mv /home/wwwroot/sinozzz123/music/1.*** /home/wwwroot/sinozzz123/abc

2.使用mv命令剪下資料夾。

把/home/wwwroot/sinozzz123/soft資料夾剪下到/home/wwwroot/sinozzz123/abc目錄下

# mv /home/wwwroot/sinozzz123/soft /home/wwwroot/sinozzz123/abc

3.使用mv命令剪下資料夾和檔案

把/home/wwwroot/sinozzz123/photo/下的資料夾和檔案剪下到/home/wwwroot/sinozzz123/abc目錄下

# mv /home/wwwroot/sinozzz123/photo/* /home/wwwroot/sinozzz123/abc

四、目錄重新命名

在linux下,移動檔案跟重新命名都是同乙個命令,mv(就是move的意思)

命令: mv 源檔名 目標檔名

1.把/home/wwwroot/sinozzz123/index.htm重新命名為/home/wwwroot/sinozzz123/index.html

# mv /home/wwwroot/sinozzz123/index.htm /home/wwwroot/sinozzz123/index.html

2.把/home/wwwroot/sinozzz123目錄重新命名為/home/wwwroot/sinozzz456

# mv /home/wwwroot/sinozzz123 /home/wwwroot/sinozzz456

五、目錄刪除

linux刪除目錄很簡單,很多人還是習慣用rmdir,不過一旦目錄非空,就陷入深深的苦惱之中,現在使用rm -rf命令即可。

直接rm就可以了,不過要加兩個引數-rf

即:rm -rf   目錄名字

-r 就是向下遞迴,不管有多少級目錄,一併刪除

-f 就是直接強行刪除,不作任何提示的意思

1.刪除檔案使用例項:

rm -f /home/wwwroot/sinozzz456/index.html

將會強制刪除/home/wwwroot/sinozzz456/index.html這個檔案

2.清空資料夾例項:

rm -rf /home/wwwroot/sinozzz456/abc/*

將會強制刪除/home/wwwroot/sinozzz456/abc目錄下所有檔案、資料夾,保留/home/wwwroot/sinozzz456/abc目錄

3.刪除資料夾例項:

rm -rf /home/wwwroot/sinozzz456

將會強制刪除/home/wwwroot/sinozzz456目錄以及其下所有檔案、資料夾

當然,rm還有更多的其他引數和用法,man rm就可以檢視了

如果是在/home/wwwroot/目錄下進行操作,則可以省去每個命令的/home/wwwroot/部分

linux如何關閉防火牆

1 重啟後生效 開啟 chkconfig iptables on 關閉 chkconfig iptables off 2 即時生效,重啟後失效 開啟 service iptables start 關閉 service iptables stop 需要說明的是對於linux下的其它服務都可以用以上命令...

linux如何關閉防火牆

1 重啟後生效 開啟 chkconfig iptables on 關閉 chkconfig iptables off 2 即時生效,重啟後失效 開啟 service iptables start 關閉 service iptables stop 需要說明的是對於linux下的其它服務都可以用以上命令...

linux如何關閉防火牆

1 重啟後生效 開啟 chkconfig iptables on 關閉 chkconfig iptables off 2 即時生效,重啟後失效 開啟 service iptables start 關閉 service iptables stop 需要說明的是對於linux下的其它服務都可以用以上命令...