More client machine than server. But yes. I have clients in which the machine setup has to be specific. I have a VM image (Linux Mint) of what each machine should be and I just need to V2P it.What is your goal here? Do you want to transfer a VM to a physical server?
Hi thanks for the reply. So after doing some digging I found a block special file do I just DD that file?Okay, then I'd recommend skipping the ISO step. The VM disk contains the data necessary to run the system, not install it. Just 'dd' the VM image to the target drive and boot from that in the physical environment. Bar any driver/compat issues, this should work fine.
/dev/zvol/pool/vm-<vmid>-disk-0
, if you're using LVM then /dev/mapper/pool-vm--<vmid>--disk--0
etc... That's the file you need to 'dd' to the physical disk that will go into your physical client machine.Ah I see, What I mean by that was im looking in /dev/mapper/vm--101... and its a link so i do 'readlink vm--101..' and it says it links to a file in /dev called dm-12. i use 'ls -al /dev/dm-12' and it is a special block file.Don't know what you mean with that... The location of your disk image (of the VM) will depend on your storage. If you're using ZFS it will be similar to/dev/zvol/pool/vm-<vmid>-disk-0
, if you're using LVM then/dev/mapper/pool-vm--<vmid>--disk--0
etc... That's the file you need to 'dd' to the physical disk that will go into your physical client machine.