微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

centos 6 7 differences 区别



命令 centos6 centos7

ifconfig 有 yum install -y net-tools

服务管理 chkconfig
/etc/init.d/服务
systemctl
systemctl start service_name



自启动
[CentOS6]
$ chkconfig service_name on/off

[CentOS7]
$ systemctl enable service_name
$ systemctl disable service_name

而对于启动脚本的存放位置,也不再是/etc/init.d/(这个目录也是存在的),而是/usr/lib/systemd/system/.


kernel 2.6 3.10

网卡 eth0 成为了可预见性的命名规则

文件系统 ext4 xfs
强制停止
[CentOS6]
$ kill -9 <PID>

[CentOS7]
$ systemctl kill --signal=9 sshd

主机名 cat /etc/sysconfig/network cat /etc/hostname

防火墙 iptables 被firewalld取代

开机执行文件/etc/rc.local 可放置开机要执行的脚本文件 认这个文件没有执行权限 x
官方推荐不使用这个文件(自己写服务),但是你可以加+x继续使用。

内核参数配置文件 /etc/sysctl.conf /usr/lib/sysctl.d/00-system.conf

/etc/sysctl.d/<name>.conf
文件结构
[CentOS6] /bin,/sbin,/lib,and /lib64在 /
[CentOS7] /bin,and /lib64移到/usr下

IP地址MAC地址
[CentOS6]
$ ifconfig -a

[CentOS7]
$ ip address show




[CentOS6]$ shutdown -h Now
[CentOS7]
$ poweroff
$ systemctl poweroff


防火墙
systemctl status firewalld
systemctl stop firewalld
systemctl disable firewalld

继续使用老版防火墙:
systemctl stop firewalld
systemctl disable firewalld
yum installed -y iptables-services
systemctl enable iptables
systemctl start iptables




参考:

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。