0

I got this old machine that runs on a p2 400 and a Linux Debian 3.1 with kernel 2.6.8 and since it has modified binaries due to internal undocumented changes in the code, migrating off manually isn't an option, so I was trying to P2V this box with VMWare Converter and had no luck.

The P2V resulted in a VM that hangs on a black screen but I can get it to boot off a LiveCD like CloneZilla. I tried in this order :

  • Recreated grub config
  • tried various SCSI BUSes in the VM config
  • Ghosted the physical machine to restore it on the virtual machine, same result

Is it normal that a bootable CD can see the disks but not the virtual BIOS?

Any idea what could cause this and how to solve? could it have to do with the fact the machine is based off IDE HDDs and that the virtual machine uses scsi/sata?

Thanks

vn.
  • 375
  • 2
  • 10
  • 1
    yes, your kernel/initrd probably does not recognize drive ( but your livecd does ). You could try with qemu, it is an easy way to emulate an ide-based system. – Olivier S May 02 '14 at 16:55
  • Fixed the boot with grub-legacy to a seperate /boot partition. Now I get this : /SBIN/INIT: 432: CANNOT OPEN DEV/CONSOLE: NO SUCH FILE KERNEL PANIC: ATTEMPTED TO KILL INIT! qemu is my next step, thanks – vn. May 08 '14 at 20:49
  • 1
    tried qemu, it did kernel panic too, finally went for hunting a Sarge CD, finding the proper repos and installing the exact package versions and moving db/code and it's in testing, all good so far. – vn. May 27 '14 at 14:57

1 Answers1

0

ghost the physical machine (centos 6) with symantec ghost32==>image file my.gho

convert this imge fine to vmdk with with symantec ghost32 : ghost32 -clone,mode=restore,src=my.gho,dst=myimage.vmdk -batch -sure

on vmware workstation verion 11 create a vm linux centos use existing disk (myimage.vmdk) type IDE(not scsi) boot the vm ok

Sabiri
  • 1