virtualbox文件共享问题总结

来源:互联网 发布:js的onclick事件 编辑:程序博客网 时间:2024/06/05 20:40
在运行mount -t vboxsf XX /mnt/shared的过程中出现下面的错误:
mount: wrong fs type, bad option, bad superblock on E_DRIVE,       missing codepage or helper program, or other error       (for several filesystems (e.g. nfs, cifs) you might       need a /sbin/mount.<type> helper program)       In some cases useful info is found in syslog - try       dmesg | tail or so

按照提示运行命令: dmesg | tail
看到下面的信息:
    sf_read_super_aux err=-22

查看mount.vboxsf的链接文件:
vincent@vincent-VirtualBox:/mnt$ ls -al /sbin/mount.vboxsflrwxrwxrwx 1 root root 40 Jun 19 09:38 /sbin/mount.vboxsf -> /usr/lib/VBoxGuestAdditions/mount.vboxsf

从上面可以看出其链接文件不对,再进/sbin/中可以看到没有mount.vboxsf文件
建立一个链接文件:
    ln -s /opt/VBoxGuestAdditions-4.3.10/lib/VBoxGuestAdditions/mount.vboxsf /sbin/mount.vboxsf

mount成功。

卸载挂载点命令:umount -f /mnt/share

如果您不想每一次都手动挂载,可以在/etc/fstab中添加一行,保存
XX /mnt/shared vboxsf rw,gid=100,uid=1000,auto 0 0
这样就能够自动挂载了。
0 0