我是Linux的初学者,我已经在我的Windows VirtualBox上全新安装了CentOS 7。在CentOs 6的教程中,他们提到要编辑/etc/sysconfig/network-scripts/ifcfg-eth0文件以进行配置。但是在我的安装中没有这样的文件,我有ifcfg-enp 0 s3和ifcfg-lo文件。
gorkyyrv1#
在CentOS教程中,/etc/sysconfig/network-scripts/ifcfg-eth0的eth0部分指的是网络接口。eth0是Linux中标准以太网接口最常用的名称。根据您的问题,您的系统有两个接口:enp0s3和lo。lo是环回接口,因此忽略该接口。剩下enp0s3。继续按照/etc/sysconfig/network-scripts/ifcfg-enp0s3的说明操作,它应该可以工作,假设界面没有任何奇怪的怪癖。
/etc/sysconfig/network-scripts/ifcfg-eth0
eth0
enp0s3
lo
/etc/sysconfig/network-scripts/ifcfg-enp0s3
rsaldnfx2#
这里也一样!我在Windows7 Virtulabox中安装了CentOS 7,没有eth0,而是enp0s3。
ip addr
ONBOOT=no
ONBOOT=yes
然后我根据centos minimal installation static ip address的接受答案更新了/etc/sysconfig/network-scripts/ifcfg-enp0s3,它工作了!由于我的Ethernet adapter VirtualBox Host-Only Network的IP地址是192.168.56.1,我将www.example.com设置192.168.56.35为enp0s3,我的vbox网卡模式是Host-Only。
Ethernet adapter VirtualBox Host-Only Network
Host-Only
roejwanj3#
czfnxgou4#
它在Windows 10上对我起到了这样的作用-将适配器1名称更改为“基于远程NDIS的互联网共享设备”
4条答案
按热度按时间gorkyyrv1#
在CentOS教程中,
/etc/sysconfig/network-scripts/ifcfg-eth0
的eth0
部分指的是网络接口。eth0
是Linux中标准以太网接口最常用的名称。根据您的问题,您的系统有两个接口:enp0s3
和lo
。lo
是环回接口,因此忽略该接口。剩下enp0s3
。继续按照
/etc/sysconfig/network-scripts/ifcfg-enp0s3
的说明操作,它应该可以工作,假设界面没有任何奇怪的怪癖。rsaldnfx2#
这里也一样!我在Windows7 Virtulabox中安装了CentOS 7,没有
eth0
,而是enp0s3
。ip addr
,enp0s3
没有绑定IP地址;/etc/sysconfig/network-scripts/ifcfg-enp0s3
,把ONBOOT=no
改成了ONBOOT=yes
,enp0s3
的ip是10.x.x.x,还是没用;然后我根据centos minimal installation static ip address的接受答案更新了
/etc/sysconfig/network-scripts/ifcfg-enp0s3
,它工作了!由于我的Ethernet adapter VirtualBox Host-Only Network
的IP地址是192.168.56.1,我将www.example.com设置192.168.56.35为enp0s3
,我的vbox网卡模式是Host-Only
。roejwanj3#
czfnxgou4#
它在Windows 10上对我起到了这样的作用-将适配器1名称更改为“基于远程NDIS的互联网共享设备”