Getting Shared Folders working properly in Debian 9 in VirtualBox

Running Debian 9 in VirtualBox is easy but figuring out how to get Shared Folders working properly can be a hassle. Here’s how to do it.

Assumptions:
– You have a VirtualBox VM set up with Debian 9.3 and nothing more.
– The user who’s running the X sessions is called Vorkbaard.
– The Windows folder you’re sharing is called D:\vbox.
– The Linux mount point is /home/vorkbaard/host.
– The session user has sudo rights.

Click any image to open a larger version.

First order of business is installing the Guest Additions (source):
[code]
# apt-get install build-essential module-assistant
# m-a prepare
[/code]

In the gui click Devices, select Insert Guest Additions CD Image.

As the session user:
[code]
$ sudo sh /media/cdrom0/VBoxLinuxAdditions.run
[/code]

Restart the VM and resize its window to verify the Guest Additions were installed correctly. The Desktop Environment should be scaled along with the VM window. If it doesn’t, kick it until it does.

From the Devices menu select Shared Folders > Shared Folders Settings.

Select Machine Folders and click the + icon. Select your host’s folder path and enter a folder name to be used in the guest. Make things easy and don’t use spaces or weird characters.

Also note that you should not use the same name for your host folder and mountpoint.

Transient folders will exist only for the duration of this VM session. Machines folders will remain.

While you’re at it, enable bidirectional sharing of the clipboard and Drag and Drop. This had nothing to do with folder sharing, it is a matter of preference.

Reboot your VM or reset your X session for the new settings to take, then test if you can mount your share. First make a directory host to function as your mountpoint:
[code]
$ mkdir host
[/code]

Mount the share:
[code]
$ sudo mount -t vboxsf vbox /home/vorkbaard/host
[/code]

Test if you can read and write in the folder. If you can’t write here the problem is most likely that you chose a host folder in the wrong location (C:\ or %userprofile%). Try a location at C:\Somefolder\ or D:\vbox.

You should not need options like rw,uid=1000,gid=1000, and so on in your mount command.

Now this is all good and well but we want to mount the share automatically upon boot so we should enter the mount in /etc/fstab.

Unmount the share with
[code]
$ sudo umount host
[/code]

Note that umount is not spelled uNmount.

Add your user to the vboxsf group, otherwise you will not be able to actually use the share:
[code]
$ sudo usermod -a -G vboxsf vorkbaard
[/code]

Open /etc/fstab and add:
[code]
vbox /home/vorkbaard/host vboxsf comment=systemd.automount 0 0
[/code]

Again, you should not need gid and uid definitions here.

Mount all shares defined in fstab:
[code]
$ sudo mount -a
[/code]

Test to see if it works:
[code]
$ touch host/test
[/code]

If it doesn’t work, scream at it until it does. Note that Gedit will not write to files at the share, apparently this is a problem between Gedit and VirtualBox. Other editors have no problem with it.

Reboot, verify that it is still working and rejoice \o/

10 Comments

  1. David Hulsman

    @Chris vboxsf is a user group, which has access to the shared folder. If your user isn’t part of that group, you can’t access the shared folder.

    You can run `sudo adduser vboxsf` to add the user to the group, as alternative to the `usermod -a -G` above.

    Use the `groups` command to see all available groups and `groups ` to see all groups that users is part of.

Comments are closed.

Back to Top