1、修改主机名方式改变
centos6在/etc/
centos7使用命令hostnamectl set-hostname 主机名
2、修改时间方式改变
3、查看IP地址ifconfig不再支持改用ip
4、修改DNS地址方式发生改变
5、netstat被ss取代
比如:ss -tunlp
6、不再有0-6的启动级别,而是4个target
7、centos7开始支持参数命令补全
比如:systemctl 再按tab键会弹出所有的参数选项
8、centos7 采用systemd服务管理
比如:centos6使用service sshd restart
centos7使用systemctl restart sshd
9、centos7不再用iptbales而支持firewald防火墙管理
比如:systemctl start firewalld
systemctl enable firewalld
firewall-cmd --zone=public --add-port=80/tcp --permanent #永久打开80端口
10、XFS文件系统的默认支持
centos6默认为exit4
centos7默认为xfs
11、虚拟化支持,默认支持docker
docker安装和使用需要linux内核为3版本以上,centos6默认为2版本,而centos7默认就为3版本