6
« on: November 26, 2017, 06:05:11 pm »
As a networking guy, I'd definitely suggest using VirtualBox as an immediate stopgap. Unfortunately, there's no way to do what you need from the graphical interface, so you'll have to pull some command-line BS.
Once VirtualBox downloaded and installed, create a new VM. Give it a name, choose the appropriate Linux type from the menu, and set its RAM (a gig or two should be fine). Choose not to create or use a hard disk file. Once the VM is created, open a command prompt and cd to (probably) C:\Program Files\Oracle\VirtualBox. Then, run the command VBoxManage internalcommands createrawvmdk -filename "C:\Users\<username>\VirtualBox VMs\<vm_folder_name>\<file_name>.vmdk" -rawdisk \\.\PhysicalDrive# (The physical drive number can be found by going to Disk Management in Windows.)
Once this is done, go to the VM's settings>Storage>Controller: SATA and click the "add hard disk" button. Point it to the VMDK file you just created, click OK, and boot the VM. It should fire up off of your physical disk, and you should be good to go.