xsmscb 发表于 2018-6-3 12:58:50

vmware 故障处理笔记

  ovf导入检测到版本不一致等
  https://www.vmware.com/support/developer/ovf/ 下载一个ovftool高版本覆盖到vmware目录下,然后导入
  ###############################################################
  导入后,链接不上网络
  一.故障现象:
  # service network restart
  Shutting down loopback insterface:                                                       [   OK]
  Bringing up loopback insterface:                                                            [   OK]
  Bringing up interface eth0:Device eth0 does not seem to be present,delaying initialization.                  
  解决办法:
  # rm -rf /etc/udev/rules.d/70-persistent-net.rules
  # reboot ………………
  # service network restart
  Shutting down loopback insterface:                                                         [   OK   ]
  Bringing up loopback insterface:                                                            [   OK   ]
  Bringing up interface eth0:                                                                     [   OK   ]
  #
  二.另一种方法
  造成这样的原因,是因为在虚拟机(Vmware)中移动了Centos系统对应的文件,导致重新配置时,网卡的MAC地址变了,输入ifconfig -a,找不到eth0
  ·······
  安装完一个centos虚拟机,又拷贝一份,开机后网卡无法正常启动,报错:Device eth0 does not seem to be present,
  delaying initialization
  

  解决:# mv /etc/sysconfig/network-scripts/ifcfg-eth0
  sysconfig/network-scripts/ifcfg-eth1
  

  vim
  sysconfig/network-scripts/ifcfg-eth1
  

  修改DEVICE="eth0"
  为DEVICE="eth1"
  

  可删掉uuid、物理地址
  

  然后重启启动网卡尝试下
  

  ###############################################################
  配置文件“…….vmx”是由Vmware产品创建,但该产品与此版本VMware workstation不兼容,因此无法使用,无法打开配置文件…….vmx。
  打开虚拟机目录,修改vmx配置文件,修改virtualhw.version = "12"值为虚拟机版本号
  
页: [1]
查看完整版本: vmware 故障处理笔记