Day002_LInux基礎_常用命令_001
1.建立使用者useradd -m -g
加引數-m 會自動建立家目錄
-g 指定group 加入什麼群組
passwd 設定使用者的密碼
su 和su - 的區別
su - 切換使用者switch user 命令的使用
2.關閉selinux
getenforce 檢視selinux的狀態
狀態: enforcing # 正在執行
#permissive selinux 臨時關閉,還是提示警告
#disabled selinux徹底關閉.
setenforce 設定selinux狀態 0和1 0 關閉,1,開啟.
永久關閉selinux,命令 修改檔案vim /etc/selinux/config
重啟伺服器後生效.
#關閉iptables 防火牆.
根據規則,決定是否讓訪問進入.(防外的)
#伺服器對外服務的,有外網,需要開啟防火牆. # 對內提供服務的,內網一般不開啟
檢視防火牆執行狀態
/etc/init.d/iptables status #### service iptables status
臨時關閉的命令 /etc/init.d/iptables stop
要想永久關閉, 先檢視iptables是否是開機自啟動服務,使用命令chkconfig --list |grep iptables
CentOS6.9 下取消開機自啟動:
方法一:ntsysv 命令, 找到iptables 那一項將其取消
方法二: chkconfig iptables off 關閉防火牆(永久關閉) 開啟命令 chkconfig iptables on
修改系統的字符集為中文或者英文
先檢視系統當前的設定的字符集: echo $LANG
export LANG="zh_CN.UTF-8" 設定為中文的UTF-8 字符集 (這種方式是臨時更改)
永久修改字符集需要編輯/etc/sysconfig/i18n 這個檔案才可以
source /etc/sysconfig/i18n
source命令使其生效. 這樣才可以正確的更改系統的字符集.