| 1 | | Mounting a shared folder in a Fedora 9 linux guest, I receive SELinux denials when I try to copy files into the shared folder. I received advice to attempt the mount using a context= option: |
| 2 | | mount -o context="system_u:object_r:vmblock:s0" -t vboxsf VMShared /mnt |
| 3 | | but this doesn't work because apparently mount.vboxfs does not understand this option: |
| 4 | | unknown mount option `context="system_u:object_r:vmblock:s0"' |
| 5 | | valid options: |
| 6 | | rw mount read write (default) |
| 7 | | ro mount read only |
| 8 | | uid =<arg> default file owner user id |
| 9 | | gid =<arg> default file owner group id |
| 10 | | ttl =<arg> time to live for dentry |
| 11 | | iocharset =<arg> i/o charset (default utf8) |
| 12 | | convertcp =<arg> convert share name from given charset to utf8 |
| 13 | | dmode =<arg> mode of all directories |
| 14 | | fmode =<arg> mode of all regular files |
| 15 | | umask =<arg> umask of directories and regular files |
| 16 | | dmask =<arg> umask of directories |
| 17 | | fmask =<arg> umask of regular files |
| | 1 | Mounting a shared folder in a Fedora 9 linux guest, I receive SELinux denials when I try to copy files into the shared folder. I received advice to attempt the mount using a ''context= option''. |