Saturday, September 30, 2017

Mouting the shared folders in ubuntu guest

To mount the shared folder in the guest, just run the command bellow with the name used while creating the shared folder.

sharename="whatever.you.want.to.call.it"; 
sudo mkdir /mnt/$sharename
sudo chmod 777 /mnt/$sharename
sudo mount -t vboxsf -o uid=1000,gid=1000 $sharename /mnt/$sharename
ln -s /mnt/$sharename $HOME/Desktop/$sharename

No comments:

Post a Comment