Tag: fstab

  • VirtualBox + Linux + SharedFolder

    SharedFolder Install VB utils (Ubuntu): sudo apt-get install virtualbox-guest-utils Manually mount shared folder: mount.vboxsf -w -o umask=0007,uid=1000,gid=1000 shared_name /<target> umask: set persmissions (0007 -> full perm to owner and group, no perm to other) uid/gid: user and group id shared_name: the name given in VB dialog for the shared folder /<target>: the folder inside Linux…