centos 7系统感觉用起来非常的不方便,好多命令都不能用了,还是觉得centos 6好用很多,centos 7命令做了以下几点变化。
1:vim命令不能用了,只能使用vi,例如vi haha.txt
2:ifconfig命令过时了,只能使用ip addr命令来查看端口
3:使用service iptables start/status就会报unit iptables.service could not be found错误,解决方法是联网安装iptables服务,执行以下命令,步骤如下。
systemctl stop firewalld system mask firewalld //联网之后可以安装 yum install iptables-services //设置为启动服务 systemctl enable iptables //管理服务 systemctl [stop|start|restart] iptables //安装好之后就可以使用该命令了 service iptables start/status
centos 7命令还有好多变化,以后慢慢总结