Skip to content

Commit

Permalink
Added to virtualbox guide command to mount host shared directories
Browse files Browse the repository at this point in the history
  • Loading branch information
Andres Hermosilla committed Aug 3, 2017
1 parent eeff0e1 commit 4acd214
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion virtualbox-vagrant.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,11 @@ https://coderwall.com/p/etzdmq/get-vagrant-box-guest-ip-from-host
UUID Already exists
http://www.groovypost.com/howto/virtualbox-error-uuid-hard-disk/

`vboxmanage.exe internalcommands sethduuid "D:\vdocs\vdisc\jenkins-0.001\box-disk1_2.vmdk"`
`vboxmanage.exe internalcommands sethduuid "D:\vdocs\vdisc\jenkins-0.001\box-disk1_2.vmdk"`


```bash
# Setup mounts in guest os
sudo su -
VBoxControl sharedfolder list | tail -n +7 | cut -d' ' -f3 | xargs -I{} sh -c 'echo mkdir -p /{} ; echo mount -t vboxsf {} /{}'
```

0 comments on commit 4acd214

Please sign in to comment.