centos6--ext4
centos7--xfs
说明:fdisk等磁盘操作命令使用都一样,只是格式化磁盘时使用mkfs.xfs而不要用mkfs.ext4,ext4的文件系统在centos7上只能读不能写。
centos6--/etc/sysconfig/network修改HOSTNAME的值
centos7--/etc/hostname直接输入主机名
说明:centos7上一样可以使用hostname临时改主机名,而且不用和CentOS6 一样重启重新登录后shell中主机名即会改变。
centos6--service service_name start/stop/status
centos7--systemctl start/stop/status service_name
centos6--chkconfig --list service_name
centos7--systemctl list-unit-files service_name
说明:centos7很多服务要加.service后辍,简单起见可直接用systemctl list-unit-files | grep service_name
centos6--chkconfig service level on/off
centos7--systemctl enable/disable service_name
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。
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"
centos6--eth0
centos7--ens33
说明:感觉centos7中ifconfig ens33 down不能完全停用网卡,需要ifdown才能彻底。
centos6--2.6.x
centos7--3.10.x