Sunday, February 23, 2014

Mount Windows shared folders on a Linux VirtualBox guest

Here’s how to mount a windows host shared folder from a linux guest, making the subfolders writable by the current non-root user:
mount -t vboxsf SharedFolderName /media/mountpoint -o uid=1000,gid=1000,rw,dmode=777
Change 1000 to your user’s UID.

No comments:

Post a Comment