there is much written about mounting shared folders, but they expect there is only ONE user in the guest system.
I'd like to have shared folder writable for ALL users of the guest system.
Code: Select all
sudo mount -t vboxsf -o umask=0000,uid=1000,gid=1000,exec vbox_shared /media/vbox_sharedCode: Select all
sudo ls -l /media
drwxr-xr-x 1 libcha libcha 4096 zář 9 10:51 vbox_sharedCode: Select all
sudo chmod a+w /media/vbox_sharedIs there a way to mount it such that all the users of the guest system could write to it ?
Thanks much.