“ sharing /mnt/share vboxsf defaults 0 0 ”,其实是错误的,

因为系统调用
fstab的时候,Virtualbox的共享目录的模块还没有加载,所以每次加载都会失败,最终的解决方案如下:
在文件 /etc/rc.local 中(用root用户)追加如下命令



mount -t vboxsf sharing /mnt/share



最后重启系统,大功告成!!!

自动挂载”功能,如下图所示:

VirtualBox 共享文件夹设置 及 开机自动挂载_加载

再使用命令 mount

VirtualBox 共享文件夹设置 及 开机自动挂载_解决方案_02



mount
/dev/sda1 on / type ext3 (rw)
proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
devpts on /dev/pts type devpts (rw,gid=5,mode=620)
tmpfs on /dev/shm type tmpfs (rw,rootcontext= " system_u:object_r:tmpfs_t:s0 ")
/dev/sda2 on /home type ext3 (rw)
sharing on /mnt/share type vboxsf (uid=1000,gid=100,rw)
none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)
sunrpc on /var/lib/nfs/rpc_pipefs type rpc_pipefs (rw)
htdocs on /media/sf_htdocs type vboxsf (gid=501,rw)
sharing on /media/sf_sharing type vboxsf (gid=501,rw)



VirtualBox 共享文件夹设置 及 开机自动挂载_解决方案_02



它自动把这些共享文件夹挂载到 /media/ ,目录下了,我想要说的是,这个挂载目录不是我想要的,

所以我没采用VirtualBox的自动挂载功能(因为挂载目录自己不可控)。