标签:flush 3.2 iptables window osi uname pat clip rom
[root@oldboyedu-40 ~]# cat /etc/redhat-release
CentOS release 6.9 (Final)
[root@oldboyedu-40 ~]# uname -r
2.6.32-696.el6.x86_64
[root@oldboyedu-40 ~]# uname -m
x86_64
[root@oldboyedu-40 ~]# useradd oldboy
[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(成功).
[root@oldboyedu-40 ~]# su - oldboy
[oldboy@oldboyedu-40 ~]$ whoami
oldboy
su只是切换了root身份,但Shell环境仍然是普通用户的Shell
su-连用户和Shell环境一起切换成root身份了。
只有切换了Shell环境才不会出现PATH环境变量错误。
su切换成root用户以后,pwd一下,发现工作目录仍然是普通用户的工作目录;而用su -命令切换以后,工作目录变成root的工作目录了。
修改配置文件: /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
永久修改的配置生效需要重启服务器。
使用的服务器不可以随意重启!
使用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) 查询防火墙是否正在运行
[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.
确保开机防火墙不再启动
在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
[root@oldboyedu-40 ~]# echo $LANG
en_US.UTF-8
连接软件的字符集是否与系统的一致
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
标签:flush 3.2 iptables window osi uname pat clip rom
原文地址:http://www.cnblogs.com/znix/p/7514524.html