2018年2月21日 星期三

CentOS 7和CentOS 6一些系统命令区别

最近在使用CentOS 7,发现很多命令等和CentOS 6不一样,所以这里列出来方便参考。
一、网卡、配置静态IP
二、常用的systemctl命令
CentOS 7开始使用systemd来代替init 系统父进程,因此熟练systemctl很有必要。
CentOS 7CentOS 6作用
systemctl start sshd.serviceservice sshd start启动ssh服务
systemctl stop sshd.serviceservice sshd stop停止ssh服务
systemctl restart sshd.serviceservice sshd restart重启ssh服务
systemctl status sshd.serviceservice sshd status  查看ssh服务状态
systemctl reload sshd.serviceservice sshd reload重新加载ssh服务
systemctl enable sshd.servicechkconfig --level 3 sshd on开机自启动ssh服务
systemctl disable sshd.servicechkconfig --level 3 sshd off开机禁止启动ssh服务
systemctl list-unit-files --type=servicechkconfig --list列出所有的服务状态
systemctl list-unitschkconfig --list、ntsysv列出允许中的服务单元
systemctl is-active sshd.servicechkconfig --list sshd查看ssh服务是否运行
systemctl mask sshd.service 屏蔽(不能启用)ssh服务
systemctl unmask sshd.service 解放屏蔽ssh服务
systemctl show sshd.service 显示SSH服务的配置信息
systemctl get-default 获取当前使用的运行等级











systemctl set-default runlevel3.targetvi /etc/inittab修改默认的运行等级
systemctl isolate runlevel3.targetinit 3启用运行等级3





三、配置文件
 1、启动配置
centos6:修改/etc/inittab
centos7:systemctl set-default runlevel3.target
2、修改主机名
 centos6:修改/etc/sysconfig/network
 centos7:修改/etc/hostname
3、网卡信息
4、开启启动文件/etc/rc.d/rc.local
 centos6:不需要任何修改
 centos7:chmod +x /etc/rc.d/rc.local
5、默认防火墙
 centos6:iptables
 centos7:firewall
 6、文件方式启动服务
 centos6:/etc/rc.d/rc3.d/ 修改K开头的文件为S
 centos7:/usr/lib/systemd/system/下的某服务做一条软连接到/etc/systemd/system目录下
7、路由转发
centos6:编辑/etc/sysctl.conf 添加 net.ipv4.ip_forward = 1或者echo “1” > /proc/sys/net/ipv4/ip_forward
centos7:编辑/etc/sysctl.conf 添加 net.ipv4.ip_forward = 1或者echo “1” > /proc/sys/net/ipv4/ip_forward
              编辑/usr/lib/sysctl.d/50-default.conf 添加 net.ipv4.ip_forward = 1
8、语言设置
centos6:vim /etc/sysconfig/i18n 修改  LANG="zh_CN.UTF-8"
centos7:localectl set-locale LANG=zh_CN.UTF-8

沒有留言:

張貼留言