Guest: Ubuntu 10.10 64-bit (ubuntu10)
(Both OS natively utilize the SATA DVD)
Goal: Want guest access to the internal host SATA DVD drive.
Challenge: After SATA DVD device added on Port 1 (guest storage), it does not recognize host DVD device.
Known: Host DVD drive is /dev/disk2. Ran diskutil info disk2, revealed host dvd drive name as "SAMSUNG DVDWBD SH-B083L"
The following is the manual entry for VBoxManage storageattach from pp. 120-1. Have tried several unproductive variations of the following argument:
Medium
“host:<drive>“: For a virtual DVD or floppy drive only, this connects the given device
slot to the specified DVD or floppy drive on the host computer.
Code: Select all
VBoxManage storageattach ubuntu10 --storagectl 'SATA Controller' --port 1 --device 0 --type dvddrive \
--type dvddrive --medium host:"SAMSUNG DVDWBD SH-B083L" --passthrough onQuestion: What is the correct usage for the --media entry that will achieve goal?