Mount Win10 raw "partition" in Linux VM
Posted: 5. Jul 2018, 17:35
I need to dual boot my system SSD, of Lubuntu and Win10. But I want to run the install of Win10(sda1) in the VM of Lubuntu(sda2).
I find some stuff for whole disk, but not for partition:
I found something, but I don't know how to translate it:
I have my Program File as a (NTFS) Junction Link to sdc1, do I need to make a VM disk/partition for that also? If so, how?
Also, my page file is on sdb1.... Dose that matter?
I find some stuff for whole disk, but not for partition:
Code: Select all
sudo VBoxManage internalcommands createrawvmdk -filename "</path/to/file>.vmdk" -rawdisk /dev/yourWindowsDisk(e.g sdb)How do I say sda1 instead of "1,5"? Do I just say "-partitions 1"?This example would create the image /path/to/file.vmdk (which, again, must be absolute), and partitions 1 and 5 of /dev/sda would be made accessible to the guest.Code: Select all
VBoxManage internalcommands createrawvmdk -filename /path/to/file.vmdk -rawdisk /dev/sda -partitions 1,5
I have my Program File as a (NTFS) Junction Link to sdc1, do I need to make a VM disk/partition for that also? If so, how?
Also, my page file is on sdb1.... Dose that matter?