Created
November 13, 2015 15:05
-
-
Save r6m/c3a4e8ffd1b3a47c4423 to your computer and use it in GitHub Desktop.
Virtualbox how to set up a shared folder
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Make sure you have guest addons installed. | |
for example : "c:\www\dev" | |
2. On host, select the share you want to share and remember what it's called. Its real path does not matter! So let's say your share is called dev. | |
3. Launch virtual machine guest. In terminal, type: | |
$ cd /mnt | |
$ sudo mkdir shares | |
$ sudo mount -t vboxsf dev shares | |
And that's it. Don't worry about the absolute paths. You don't need them. For all practical purposes, VB will take care of the real path behind the share name, in this case Dedoimedo. | |
See if this works out for you. | |
# rezam90 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment