Installing a new VPN on a new workstation and it has been a year since I did my last Virtualbox setup. Everything works but I don't like how the shared folders in media are labeled as sf_folder
. I was curious to know can I rename these folders or would it cause issues? I didn't see a solution or any documentation on it from a search. Setup is now Windows 7 and Ubuntu 12.04 running Virtualbox. This may be another question but after the initial install and setup of shared folders and Guest Additions I only see a folder in media
and not mnt
. I can get a shared folder in mnt
with sudo ln -sf /media/folder /mnt/
but I don't know yet if there's a better way yet.
sf_
is alwasy prepended by VirtualBox to indicate that it's a shared folder. This is done by a vbox service, part of the Guest Additions. You can bind the shared folder directory to another of your choice inmtab
if you desire.Use this to open the mtab file:
In the mtab file enter a new line at the bottom. The format you want to use is:
Here's an example from one of mine:
It's standard practice to hit [enter] when you've finished your edit so there is a new line entry at the end of the file.
I figured out how to add a folder in the
mnt
location from themedia
location without havingsf_
.I used this code:
sudo mount --bind /media/sf_folder /mnt/folder