标签:input conf chkconfig ref 启动 shel eve 最新 --
1.文件系统
centos6--ext4
centos7--xfs
说明:fdisk等磁盘操作命令使用都一样,只是格式化磁盘时使用mkfs.xfs而不要用mkfs.ext4,ext4的文件系统在centos7上只能读不能写。
2.修改主机名
centos6--/etc/sysconfig/network修改HOSTNAME的值
centos7--/etc/hostname直接输入主机名
说明:centos7上一样可以使用hostname临时改主机名,但也一样shell中显示的主机名还是得重启才会变。
3.启停服务
centos6--service service_name start/stop/status
centos7--systemctl start/stop/status service_name
4.配置服务开机自启动
centos6--chkconfig service level on/off
centos7--systemctl enable/disable service_name
5. 启动级别
centos6--编缉/etc/inittab;格式如:id:5:initdefault:
centos7--systemctl set-default multi-user.target/graphical.target
说明: multi-user.target同centos6的3级别,graphical.target相当于centos6的5级别;获取当前启动级别:runlevel。
6.防火墙
centos6--iptables
centos7--firewall
说明:感觉最新的centos7中iptables也可以使用,但像是一个外壳,规则会自动转成firewall的规则;iptables中最常用的iptables -I INPUT对应firewall的rich rule,形如:
firewall-cmd --permanent --zone=public --add-rich-rule="rule family="ipv4" source address="192.168.220.0/24" port protocol="tcp" port="8080" accept"
7.网卡名
centos6--eth0
centos7--ens33
说明:感觉centos7中ifconfig ens33 down不能完全停用网卡,需要ifdown才能彻底。
8.内核
centos6--2.6.x
centos7--3.10.x
参考:
https://www.cnblogs.com/bethal/p/5945026.html
http://blog.csdn.net/smstong/article/details/39317277
标签:input conf chkconfig ref 启动 shel eve 最新 --
原文地址:http://www.cnblogs.com/lsdb/p/7809442.html