wxsheng 发表于 2018-6-6 08:18:20

vmware converter P2V linux要点

  1、目标物理机ssh allow all,默认22端口;
  2、Options Advanced: Reconfigure destination vm 关闭
  3、Helper VM network configuration 必须填写可通IP地址(重要)
  

  4、修复grub
># fdisk -l#查看第几块硬盘上的第几分区挂载到了/boot上,对应到下面的root (hd0,0)这里。
># chroot /mnt/sysimage/
># grub
># root (hd0,0)
># setup (hd0)
># quit
># exit
># reboot  5、修改scsi驱动程序,重编译内核

  

># chroot /mnt/sysimage/
># vim /etc/modprobe.conf
  

  RHEL5.8,LSI logic并行下驱动为
alias eth0 e1000
alias scsi_hostadapter mptbase
alias scsi_hostadapter1 mptspi
alias scsi_hostadapter2 ata_piix
alias net-pfalias eth0 e1000  

  ># cd /boot/># mkinitrd -v -f initrd-xxxx.img xxxx># exit># reboot
  

  参考:http://longgeek.com/2012/12/29/vmware-converter-p2v-your-linux-appears-error-loading-operating-system-solution/
  
页: [1]
查看完整版本: vmware converter P2V linux要点