I'm trying to automount VirtualBox Shared Folders in Ubuntu, the Sharenames are *_DRIVE, whereas * is D,E, etc. to then share them again via samba. If i
mount -t vboxsf D_DRIVE /media/shares/D
it works, but that's of course only until the next reboot.
So then I tried to mount them via fstab, which mounts them (as I see in 'sudo mount') but the mountpoints remain empty. I tried adding vboxsfv and vboxadd in /etc/modules/ but to no avail. I do, however, see that the vboxservice auto-mounts all shares to /media/sf_*_DRIVE and they are available. It's no problem to double mount a share though since I can manually mount them and they both work.
While I could share all /media/sf_*_DRIVE's I'd like to just share /media/shares/ which contains all mountpoints instead.

mountcommand unfortunately only dumps the contents of/etc/mtab, and not the actual current kernel mount table which is seen via/proc/mounts. The two do not necessarily match. Next time you see an empty mount point, do acat /proc/mountsto see the real deal. – Kaz Apr 3 at 16:36/etc/fstabentries? – Kaz Apr 3 at 16:36