linux 命令記錄

2021-07-28 06:46:47 字數 801 閱讀 6979

為單個檔案授權 chmod 777 startup.sh

關閉防火牆 systemctl stop firewalld.servicecentos 6.5

1)立即關閉,並非永久關閉service iptables stop

2)永久關閉iptables -f 關閉防火牆功能

chkconfig iptables off 禁止防火牆啟動另外,

執行 setup 在介面,

選擇firewall configuration,進入下一介面,選擇 security level為disabled,儲存。

linux下建立快捷方式

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

linux命令記錄

檔案拷貝 cp ri a b,將a資料夾下的所有檔案拷貝到b資料夾下 cp r 原始檔 目的檔案,引數r是指連同原始檔中的子目錄一起拷貝 使用者 useradd,新增使用者 passwd 使用者名稱,輸入密碼 su,切換使用者,切換到root sudo,普通使用者可以執行root才能執行的命令,環境...

linux命令記錄

1.多檔案內容的查詢替換 sed i s oldstring newstring g grep oldstring rl dir 2.tcpdump 網路抓包 tcpdump xns0 i any udp tcp port i 指定網絡卡 upd tcp 協議 port 指定埠 其他具體選型參考 m...

linux命令記錄

1 設定histtimeformat d m y t 然後history命令的輸出結果帶有時間戳2 查詢該目錄下有含有關鍵字的檔案 find type f xargs grep keyword 3 一行dd命令指令碼就可以實現測試磁碟的讀寫速度 dd if dev zero of tmp outpu...