- With the guest machine turned off, open the Settings dialog.
- Go to the Shared Folders tab.
- Click on the Add Shared Folders button.
- Browse for the directory you want to share, and give it a name. In my case, I called the share work and I selected c:\work on my host’s filesystem. Click OK.
- Restart your guest machine.
- Now you need to mount this shared folder in the guest OS.
In Windows, the share is always named \\vboxsrv\sharename. You can navigate to this via My Network Places. You could also use the net command:
net use q: \\vboxsrv\sharename
In Linux, you use the mount command:
mount -t vboxsf sharename mountpoint
e.g.,
mount -t vboxsf work /mnt/work
No comments:
Post a Comment