linux防火牆關閉與中文顯示亂碼排錯

2022-08-12 09:45:19 字數 1391 閱讀 5235

ps1主要用來控制命令列的樣式

如:

\u:代表當前使用者 whoami

\h:代表當前主機名 hostname

\w:代表當前位置 pwd

修改ps1

查詢selinux狀態

selinux的三種狀態

enforcing:表示selinux正在執行

permissive:表示selinux臨時關閉

disabled:表示selinux徹底關閉

臨時關閉selinux

如遇到setenforce: setenforce() failed,表示許可權不足,需要在root使用者下執行setenforce 0

永久關閉selinux

修改配置檔案,/etc/selinux/config,將selinux=enforcing修改成selinux=disabled,然後重啟計算機即可

查詢狀態

[root@web02 ~]# /etc/init.d/iptables status

臨時關閉

[root@web02 ~]# /etc/init.d/iptables stop

永久關閉

設定開機不自動啟動,使用命令chkconfig iptables off,如需要改成開機自動啟動將off改成on即可。

檢視系統字符集

使用echo $lang命令來進行檢視

臨時修改系統字符集

使用export lang=字符集來進行修改

永久修改系統字符集

修改配置檔案/etc/sysconfig/i18n檔案中的lang,然後使用source /etc/sysconfig/i18n來生效

Linux 關閉防火牆

centos 6 中防火牆預設是 iptables,而 centos 7 中防火牆預設是 firewall。a 檢視防火牆狀態 service iptable statusb 臨時關閉防火牆 臨時關閉防火牆 servcie iptables stop 臨時啟動防火牆 service iptables...

Linux 關閉防火牆

一.linux下開啟 關閉防火牆命令 1 永久性生效,重啟後不會復原開啟 chkconfig iptables on關閉 chkconfig iptables off 2 即時生效,重啟後復原開啟 service iptables start關閉 service iptables stop 需要說明...

linux關閉防火牆

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