Changes between Initial Version and Version 1 of Ticket #16697
- Timestamp:
- Apr 26, 2017 6:59:35 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #16697 – Description
initial v1 2 2 3 3 After installing GA for 5.1.20, shared folders no longer mount: 4 4 {{{ 5 5 # mount host_home 6 6 mount: wrong fs type, bad option, bad superblock on host_home, … … 14 14 [ 334.616717] vboxsf: Successfully loaded version 5.1.20 (interface 0x00010004) 15 15 [ 343.413650] sf_read_super_aux err=-22 16 16 }}} 17 17 Looking around the problem is caused by a broken symlink to mount.vboxsf 18 18 {{{ 19 19 # updatedb 20 20 … … 26 26 lrwxrwxrwx. 1 root root 49 Apr 26 10:04 /usr/sbin/mount.vboxsf 27 27 -> /opt/VBoxGuestAdditions-5.1.20/other/mount.vboxsf 28 }}} 28 29 Aha, it seems that mount.vboxsf is a broken link; the following are not the same: 29 30 {{{ 30 31 /opt/VBoxGuestAdditions-5.1.20/lib/VBoxGuestAdditions/mount.vboxsf <--- available 31 32 /opt/VBoxGuestAdditions-5.1.20/other/mount.vboxsf <--- pointed at 32 33 }}} 33 34 Bit of a quicky fix: 34 35 {{{ 35 36 # rm -f /usr/sbin/mount.vboxsf 36 37 … … 48 49 ... 49 50 host_home on /home/ckerr/host_home type vboxsf (rw,nodev,relatime) 50 51 }}}