- On the virtual box menu go to Device > Shared Folder.
- Add a new shared folder.
- Select the windows path to the folder you want to share and then give a name to the folder (f.i. MY_WINDOWS).
- Select "Permanent" to permanently share this folder.
- Now is the time to mount this shared windows folder on a ubuntu folder. So lets create a folder in our home directory and lets name it WINDOWS_FOLDER
- from the command line:
sudo mkdir /home/danilo/WINDOWS_FOLDER - So now that we created the folder on Ubuntu lets mount on it the windows folder:
sudo mount.vboxsf MY_WINDOWS /home/danilo/WINDOWS_FOLDER - Done!
If you want to mount this folder when ubuntu start open a terminal and write:
sudo nano -w /etc/rc.local
Add this line to the file:
mount.vboxsf MY_WINDOWS /home/danilo/WINDOWS_FOLDER
<press ctrl-x to save>
Ciao
No comments:
Post a Comment