
If you want to create a shared folder between your host and guest machine (using VirtualBox), you should execute following steps:
- Make sure you have the virtualbox-guest-additions installed on your system. If not, install it:
$ sudo aptitude install virtualbox-guest-additions
- Now install those guest additions in the guest domain: Devices > Install guest additions ... [Host + D]
- On the host (Ubuntu) computer, run
$ mkdir ~/VirtualBoxShare $ VBoxManage sharedfolder add "Ubuntu 10.10" -name "myshare" -hostpath /home/your/shared/folder/VirtualBoxShare/
Where "Ubuntu 10.10" is the name of the virtual machine in VirtualBox, and "myshare" is the name of the share as the guest machine will see it. The hostpath must be a fully-qualified path.
- If the client is Linux, you have to mount and connect it to a folder. Run :
$ mkdir /mnt/mountpoint $ cd /mnt/mountpoint $ sudo mount -t vboxsf myshare mountpoint
Add new comment