解决Centos 7不能联网且输入ifconfig出现command not found
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决Centos 7不能联网且输入ifconfig出现command not found相关的知识,希望对你有一定的参考价值。
在VMware Workstation中,以最小化方式安装Centos 7后,发现无法获得IP地址进行上网,这是
因为Centos 7默认网卡未被激活。此外,在sbin目录中没有ifconfig文件,这是因为Centos 7已
经不使用ifconfig命令了,用ip命令替代,同时网卡名称也不是eth0了,而是改成了eno xxx了。
(1)解决ifconfig不可用:使用ip addr即可查看网卡分配情况。
(2)解决无法联网问题:激活网卡,在配置文件/etc/sysconfig/network-scripts/ifcfg-eno xxx
中进入编辑模式,将ONBOOT=no改为ONBOOT=yes,就可以了。
随后重启网卡:service network restart,此时就能够获得IP地址,进行网络访问了。
本文出自 “yu_wl” 博客,请务必保留此出处http://yuwenlong.blog.51cto.com/11055547/1945956
以上是关于解决Centos 7不能联网且输入ifconfig出现command not found的主要内容,如果未能解决你的问题,请参考以下文章
解决Centos7不能联网且ifconfig出现command not found
新安裝的Centos7不能联网且ifconfig出现command not found
CentOS 7.0下解决ifconfig: command not found的方法