Home » Questions » Computers [ Ask a new question ]

How to access the "Shared folders" in VirtualBox?

How to access the "Shared folders" in VirtualBox?

I am running Fedora from VirtualBox with Windows XP as the OS host. How do I mount the selected shared folder in Linux?

Asked by: Guest | Views: 260
Total answers/comments: 2
bert [Entry]

"I mounted it on a Debian distro in VirtualBox and it worked without a problem:

(Check if needed http://wvarner.blogspot.com/2008/05/installing-virtualbox-guest-additions.html)

sh /cdrom/VBoxLinuxAdditions.run
mount -t vboxsf"
bert [Entry]

"Not sure what the command is exaclty for fedora, but here are a couple of examples:

sudo smbmount \\\\192.168.1.10\\c\$ /mnt/localFolder/ -o username=administrator
mount -t cifs \\\\WindowsHostName\\utility /mnt/localfolder -o username=administrator

And you might need a package like smbfs or samba-client."