Menu

Share folders between guest (vbox) - host

Virtualbox
Duy Dinh
2013-01-22
2013-01-22
  • Duy Dinh

    Duy Dinh - 2013-01-22

    If you've used the GUI tool to share a folder with your Ubuntu guest machine, you probably are confused why it's not showing up anywhere.

    Click on the menu of the Virtual Box:
    Devices --> Install Guest Additions (host + d)

    The problem is that you need to run a command to make it show up. First, create a mount point, and then use the special mount syntax to actually "map" the folder to the shared VirtualBox folder.

    sudo mkdir /media/vboxshared

    Now you can map the folder using the share name that you setup earlier in VirtualBox

    sudo mount -t vboxsf SHARENAME /media/vboxshared

     
  • Duy Dinh

    Duy Dinh - 2013-01-22

    under Ubuntu, we need to access to the shared folder using the command

    Open a terminal

    sudo -s
    password :

    nautilus &

     

    Last edit: Duy Dinh 2013-01-22

Log in to post a comment.