Bureaucrats, confirmed, Administrators
4,558
edits
(add help for Guest Additions) |
(add info about shared folders) |
||
Line 58: | Line 58: | ||
== Shared Folders == | == Shared Folders == | ||
Once you create a shared folder in the VirtualBox UI, you may need to mount that folder from the guest. | |||
E.g. for meza, | |||
<source lang="bash"> | |||
cd ~/src/meza | |||
vagrant ssh # to get onto the guest | |||
sudo mount -t vboxsf -o uid=$UID,gid=$(id -g) opt_meza /opt/meza | |||
# now the /home/greg/src/meza folder on the host is available to the vagrant user on the guest at /opt/meza | |||
</source> | |||
== Disk Images == | |||
Learn more about VDI - Virtual Disk Images. All about how VirtualBox stores a 'snapshot' of a guest computer into a file on the host. | |||
http://forums.virtualbox.org/viewtopic.php?t=8046 | http://forums.virtualbox.org/viewtopic.php?t=8046 | ||