Fedora 12 64bit Shared Folders in Virtualbox
December 3rd, 2009Yesterday I had a problem with the shared folders when running 64bit Fedora 12 in Virtualbox. When I ran the command to mount the share
# mount -t vboxsf sharename mountpoint
it just returned the error ‘command not found’. It turns out the the command is actually a symlink called /sbin/mount.vboxsf that points to /usr/lib/VBoxGuestAdditions/mount.vboxsf.
My symlink was broken due to the fact that on 64bit systems the program is actuallly located in /usr/lib64/VBoxGuestAdditions/mount.vboxsf. To fix I simply deleted and recreated the symlink to point to the correct location.
# cd /sbin # rm mount.vboxsf # ln -s /usr/lib64/VBoxGuestAdditions/mount.vboxsf mount.vboxsf