查看系統版本、修改用戶、關閉selinux、關閉iptables、遠程連接亂碼 ...
1.1 查看Linux版本
1.1.1 系統版本
[root@oldboyedu-40 ~]# cat /etc/redhat-release
CentOS release 6.9 (Final)
1.1.2 內核版本
[root@oldboyedu-40 ~]# uname -r
2.6.32-696.el6.x86_64
1.1.3 系統架構
[root@oldboyedu-40 ~]# uname -m
x86_64
1.2 添加用戶、設置密碼
1.2.1 添加用戶
[root@oldboyedu-40 ~]# useradd oldboy
1.2.2 設置密碼
[root@oldboyedu-40 ~]# passwd oldboy
Changing password for user oldboy. ###修改oldboy用戶密碼
New password:
BAD PASSWORD: it is too simplistic/systematic
BAD PASSWORD: is too simple ###密碼太簡單
Retype new password:
passwd: all authentication tokens updated successfully(成功).
1.3 切換用戶
1.3.1 使用這個用戶 切換用戶
[root@oldboyedu-40 ~]# su - oldboy
1.3.2 顯示你是誰?
[oldboy@oldboyedu-40 ~]$ whoami
oldboy
1.4 su 與su- 的區別
su只是切換了root身份,但Shell環境仍然是普通用戶的Shell
su-連用戶和Shell環境一起切換成root身份了。
只有切換了Shell環境才不會出現PATH環境變數錯誤。
su切換成root用戶以後,pwd一下,發現工作目錄仍然是普通用戶的工作目錄;而用su -命令切換以後,工作目錄變成root的工作目錄了。
1.5 關閉selinux
1.5.1 永久生效
修改配置文件: /etc/selinux/config的
[root@oldboyedu-40 ~]# vim /etc/selinux/config
/etc/selinux/config 文檔內容含義:
#enforcing selinux預設狀態 selinux已經開啟,正在運行
#permissive selinux臨時關閉,顯示警告
#disabled selinux徹底關閉
使用sed命令對/etc/selinux/conifg 文件進行修改
sed -i 's#SELINUX=enforcing#SELINUX=disabled#g' /etc/selinux/config
讓配置文件的修改生效,使用source命令
[root@oldboyedu-40 ~]# source /etc/selinux/config
永久修改的配置生效需要重啟伺服器。
使用的伺服器不可以隨意重啟!
1.5.2 臨時關閉
使用getenforce 命令查看selinux的
[root@oldboyedu-40 ~]# getenforce
Enforcing(正在運行)
使用setenforce 命令修改selinux配置臨時關閉selinux。
[root@oldboyedu-40 ~]# setenforce
usage: setenforce [ Enforcing | Permissive | 1 | 0 ]
[root@oldboyedu-40 ~]# setenforce 0
[root@oldboyedu-40 ~]# getenforce
Permissive(臨時關閉)
1.6 關閉防火牆
1.6.1 臨時關閉
1) 查詢防火牆是否正在運行
[root@oldboyedu-40 ~]# /etc/init.d/iptables status
2) 關閉防火牆
a) 一般需要關兩次,確保完全關閉。
[root@oldboyedu-40 ~]# /etc/init.d/iptables stop
iptables: Setting chains to policy ACCEPT: filter [ OK ]
iptables: Flushing firewall rules: [ OK ]
iptables: Unloading modules: [ OK ]
[root@oldboyedu-40 ~]# /etc/init.d/iptables stop
3) 檢查一下是否關閉
[root@oldboyedu-40 ~]# /etc/init.d/iptables status
iptables: Firewall is not running.
1.6.2 永久關閉
確保開機防火牆不再啟動
在chkconfig中查找iptables 的行,看他的狀態。on是開,off是關。
[root@oldboyedu-40 ~]# chkconfig|grep "ipta"
iptables 0:off 1:off 2:on 3:on 4:on 5:on 6:off
使用chkconfig的命令關閉iptables
[root@oldboyedu-40 ~]# chkconfig iptables off
檢查一下是否關閉了。
[root@oldboyedu-40 ~]# chkconfig|grep "ipta"
iptables 0:off 1:off 2:off 3:off 4:off 5:off 6:off
1.7 顯示亂碼解決
1.7.1 查看linux系統字元集
[root@oldboyedu-40 ~]# echo $LANG
en_US.UTF-8
1.7.2 查看遠程軟體的字元集
連接軟體的字元集是否與系統的一致
1.7.3 亂碼解決辦法
1) linux系統字元集修改
a) 使用export 對變數進行修改
[root@oldboyedu-40 ~]# export LANG=en_US.utf8
[root@oldboyedu-40 ~]# echo $LANG
en_US.utf8
b)修改配置文件,將/etc/sysconfig/i18n修改為utf-8字元集。
[root@oldboyedu-40 ~]# cat /etc/sysconfig/i18n
LANG="en_US.UTF-8"
SYSFONT="latarcyrheb-sun16"
c)使用source或. /etc/sysconfig/i18n 讓配置生效
[root@oldboyedu-40 ~]# source /etc/sysconfig/i18n
[root@oldboyedu-40 ~]# . /etc/sysconfig/i18n