Ubuntu – Can’t access VirtualBox shared folder

virtualbox

I've created a shared folder in VirtualBox and made it mount under Ubuntu; I see it in the /media/ dir, but when I'm trying to list it I'm getting a "No permission" error message. How can I fix that?

Best Answer

Add your user to the vboxsf group:

sudo usermod -aG vboxsf $(whoami)
sudo reboot
Related Question