1. 程式人生 > >linux防火墻關閉與中文顯示亂碼排錯

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

三種 failed 使用命令 oot echo conf 防火 () bubuko

PS1

PS1主要用來控制命令行的樣式
如:
技術分享圖片
\u:代表當前用戶 whoami
\h:代表當前主機名 hostname
\W:代表當前位置 pwd

修改PS1

技術分享圖片

SElinux

查詢SElinux狀態

SElinux的三種狀態
Enforcing:表示SElinux正在運行
Permissive:表示SElinux臨時關閉
disabled:表示SElinux徹底關閉
技術分享圖片

臨時關閉SElinux

[root@web02 ~]# setenforce 0
技術分享圖片
如遇到setenforce: setenforce() failed,表示權限不足,需要在root用戶下執行setenforce 0

永久關閉SElinux

修改配置文件,/etc/selinux/config,將SELINUX=enforcing修改成SELINUX=disabled,然後重啟計算機即可
技術分享圖片

iptables(防火墻)

查詢狀態

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

臨時關閉

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

永久關閉

設置開機不自動啟動,使用命令chkconfig iptables off,如需要改成開機自動啟動將off改成on即可。
技術分享圖片

linux顯示中文亂碼排錯

查看系統字符集

使用echo $LANG命令來進行查看
技術分享圖片

臨時修改系統字符集

使用export LANG=字符集來進行修改
技術分享圖片

永久修改系統字符集

修改配置文件/etc/sysconfig/i18n文件中的LANG,然後使用source /etc/sysconfig/i18n來生效
技術分享圖片

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