linux看不到eth0的解决办法:1、使用命令“ifconfig eth0 192.168.1.x”设置eth0的ip;2、在“vsphere client”中更改适配器类型即可。
本文操作环境:linux5.9.8系统、G3电脑。
This is the operating environment: 5.9.8 systems, G3 computers.
linux 看不到eth0怎么办?
What if you can't see eth0?
Linux系统找不到eth0设备的解决办法
The solution that the eth0 device could not be found in the Linux system
一、问题描述:
? ? ? VMware vSphere Client下Linux虚拟机ifconfig命令无法找到eth0设备,且/etc/sysconfig/network-scripts/中只有ifcfg-lo文件,而没有ifcfg-eth0。
二、原因可能有两个: ii, probably for two reasons: 三、针对第一个原因,临时解决方法: iii, for the first reason, interim solutions: ? ? ? 使用命令ifconfig eth0 192.168.1.x可以正常设置eth0的IP,该方法仅为临时处理办法,系统重启后即失效了。//注:在我的电脑运行此命令显示找不到那个设备。 四、针对第二个原因解决办法: iv. For the second reason solution: ? 我们通过vSphere Client客户端,添加网络适配器2(适配器类型为E1000),然后删除网络适配器1,重启服务器。 We add network adaptor 2 (type E1000) via vSphere Client client, then delete network adapter 1 and restart the server. 重启后,在/etc/sysconfig/network-scripts/下,你会看到有ifcfg-eth0和ifcfg-eth0.bak两个配置文件,系统自动生成了新的配置文件并将原来的配置文件重命名了。 After restarting, under /etc/sysconfig/work-scripts/, you will see two configuration files: ifcfg-eth0 and ifcfg-eth0.bak, the system automatically generates new configuration files and renames the original configuration files. 推荐学习:《linux视频教程》 Recommended for study: linux video tutorial 以上就是linux 看不到eth0怎么办的详细内容,更多请关注php中文网其它相关文章! This is linux without details about what eth0 should do.
第一,单纯的ifcfg-eth0文件丢失或者eth0变为eth x(可通过ifconfig -a命令查看),Linux启动时会通过该文件自动启用eth0网卡设备
第二,网络适配器与Linux老版本不匹配导致
first, simple iffg-eth0 file lost or eth0 changed to eth x (through ifconfig-a command), Linux will automatically activate the Eth0 netcard device
second at the start of this document, resulting in a non-matching of the network adaptor with the old Linux version
永久解决方法:
? ? ? 1、在/etc/sysconfig/network-scripts/目录下新建ifcfg-eth0文件;
? ? ? 2、正确设置ifcfg-eth0的DEVICE、BOOTPROTO、ONBOOT、IPADDR、GATEWAY、NETMASK、NETWORK、NAME等等,比如:
DEVICE=eth0? ? ? ? ? ? ? ? ? ? #物理设备名称
BOOTPROTO=static #表示静态IP,设置为DHCP则表示动态获取
IPADDR=192.168.1.x? ? ? ? # IP地址
NETMASK=255.255.255.0? #子网掩码
GATEWAY=192.168.1.1? ? ?#网关地址
ONBOOT=yes #启动时自动启用
新增一个老版本的网络适配器,跟当前你的Linux系统匹配就可,如E1000
方法:在vSphere Client中更改适配器类型
在VMware vSphere Client客户端选中虚拟机--编辑虚拟机设置,然后添加-网络适配器,选择E1000类型
add an old version of the network adapter that matches your current Linux system, e.g. E1,000
selects the virtual machine at VMware vSphere Clit
注册有任何问题请添加 微信:MVIP619 拉你进入群
打开微信扫一扫
添加客服
进入交流群
发表评论