diff --git a/virtualbox/setup.md b/virtualbox/setup.md index ce83c307..77712477 100644 --- a/virtualbox/setup.md +++ b/virtualbox/setup.md @@ -50,18 +50,21 @@ sudo sh ./VBoxLinuxAdditions.run --nox11 ### Mount host shared folder https://gist.github.com/estorgio/0c76e29c0439e683caca694f338d4003 +#### Mount manually ``` sudo mount -t vboxsf c ~/shared ``` +#### Mount persistently + ``` +# setup the mount point # /etc/fstab c /mnt/c vboxsf defaults 0 0 d /mnt/d vboxsf defaults 0 0 -``` -``` +# load up this kernel on load # /etc/modules vboxsf ```