vmware虚拟机迁移导致的eth0消失问题

将原来的ubuntu虚拟机文件迁移到另一台机子之后。

ifconfig显示只有一个lo网卡,网上找了一些文章,大多是修改/etc/network/interfaces

原来内容是

# #######################################################

# This file describes the network interfaces available on your system

# and how to activate them. For more information, see interfaces(5).

# The loopback network interface

auto lo

iface lo inet loopback

# The primary network interface

auto eth0

iface eth0 inet dhcp

# #######################################################

将eth0改为静态ip

# #######################################################

# This file describes the network interfaces available on your system

# and how to activate them. For more information, see interfaces(5).

# The loopback network interface

auto lo

iface lo inet loopback

# The primary network interface

auto eth0

iface eth0 inet static

address 192.168.60.218

gateway 192.168.60.1

netmask 255.255.255.0

# #######################################################

reboot后执行ifconfig,仍然只显示lo,找不到eth0

无意中执行ifconfig -a,显示有eth1,eth2和lo。

于是修改/etc/network/interfaces,将原来的eth0修改为eth1

# #######################################################

# This file describes the network interfaces available on your system

# and how to activate them. For more information, see interfaces(5).

# The loopback network interface

auto lo

iface lo inet loopback

# The primary network interface

auto eth1

iface eth1 inet static

address 192.168.60.218

gateway 192.168.60.1

netmask 255.255.255.0

# #######################################################

reboot后,ifconfig终于显示eth1,熟悉的网络又回来了。这里简单记录一下,以免下次再次遇到。



时间: 2025-01-06 07:12:46

vmware虚拟机迁移导致的eth0消失问题的相关文章

VMware 虚拟机迁移

VM共享存储虚拟化,三台服务器,其中两台配置一样580G7 CPU4820 另一台是580G9 CPU4809 V4 以前迁移没问题,最近一台新服务器和一台原有服务器经常无响应,昨天有一台无响应后重启虚拟主机,好几台虚拟机在老的服务器上迁移到新的服务器上没问题,迁过去后,就不能往老的服务器上迁移了,以前都没有问题,经过多方判断原因是CPU版本相差太大,导致不能迁移,解决方法:1.关闭虚拟机-修改虚拟机配置-选项-高级-CPUID掩码-选择向客户机隐藏NX/XD标记-高级 修改级别1或者是8000

Vmware虚拟机迁移出现503serviceunavailable错误解决办法

方法:1.重启VC 2.如果重启不行,上网查看VMware KB On the vCenter Server Appliance, vMotion and storage vMotionof virtual machines fails with the error: A general system erroroccured: Invalid response code 503: service unavailable(2091384) Resolution To resolve this i

VMware虚拟机迁移到openstack平台

1.检查内核是否支持virtio驱动grep -i virtio /boot/config-$(uname -r)2.如果内核没有virtio驱动需要指定virtio驱动cp /boot/initramfs-$(uname -r).img /boot/initramfs-$(uname -r).img.bakmkinitrd -f --with=virtio_blk --with=virtio_pci /boot/initramfs-$(uname -r).img $(uname -r)3.关闭

VirtualBox和VMware虚拟机相互转换

如果你已经按照自己的喜好设置好了虚拟机,那么就不需要再从头安装--你可以迁移现有的虚拟机. VirtualBox 和 VMware 使用不同的虚拟机格式,不过他们都支持标准的开放式虚拟化格式.将已经存在的虚拟机转换为 OVF/OVA 格式就可以导入其他的虚拟机程序. 不幸的是,这并不总是奏效.因为 VirtualBox 和 VMware 看起来使用些许不同的 OVA/OVF 实现方式,因此也不完全兼容.如果这不奏效,你可能需要重新安装虚拟机的客户机操作系统了. VirtualBox 转换到 VM

转换VMware虚拟机到Hyper-V Server

本篇幅主要介绍如何借助微软官方发布的Microsoft Virtual Machine Converter工具将VMware ESXI平台的虚拟机转换并迁移到Microsoft Hyper-V Server平台.目前这一工具最新版是MVMC3.0.您可以在微软官方网站下载,并且免费使用.下载链接如下: http://www.microsoft.com/en-us/download/details.aspx?id=42497 1.BJ-ESXI-01是已经安装好的VMware ESXI5.5服务器

?vmware虚拟机centos网络配置错误,执行/etc/init.d/network start 或 restart 提示Device eth0 has different MAC address than expected, ignoring

vmware虚拟机centos网络配置错误,执行/etc/init.d/network start 或 restart 提示Device eth0 has different MAC address than expected, ignoring 解决方法: 执行:grep -rHi eth0 /etc/udev/rules.d/ It will probably show you a file that has a udev rewrite rule for the eth0 and has

如何解决虚拟机克隆导致"Bringing up interface eth0: Error: No suitable device found: no device found for connection 'System eth0'."

在VMware的虚拟机中克隆CentOS,在重启网卡的时候报错: Bringing up interface eth0:  Error: No suitable device found: no device found for connection 'System eth0'. Shutting down loopback interface: [ OK ] Bringing up loopback interface: [ OK ] Bringing up interface eth0: E

【转】VMware Converter迁移linux系统虚拟机

原始出处 今天接到一个需求,迁移一台linux的业务系统到vCenter云管理平台,其中遇到一些问题,于是进行了排错,这个过程与大家分享,下面把整个步骤进行截图说明. 1. 首先,登录到VMware Converter的服务器,打开VMware Converter Standalone工具,如图1.1所示. 图1.1 Converter 管理界面 2. 左键点击界面左上角的转换计算机选项,选择源类型已打开电源的计算机,输入远程计算机信息,包括IP.用户名.密码.操作系统信息,如图1.2所示. 图

vmware克隆centos6.5 导致 system eth0 不可用解决办法

vim /etc/udev/rules.d/70-persistent-net.rules 可以看到eth0 eth1两个. 注释 NAME="eth0" # PCI device 0x8086:0x100f (e1000) SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:0c:29:48:85:9c", ATTR{typ