virtualBox+centos使用mount -t vboxsf挂载
Posted 郑楚周
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了virtualBox+centos使用mount -t vboxsf挂载相关的知识,希望对你有一定的参考价值。
1、先确保virtualBox安装目录下有对应的文件VBoxGuestAdditions.iso
2、点击设备下的“安装增强功能”,之后再centos可视化界面一步一步点击即可
3、virtualBox设置共享目录
4、在linux上输入mount -t vboxsf www /var/www(ps:不要在/var/www目录上执行该命令),没有报错到这里就可以了
5、执行4时报错,/sbin/mount.vboxsf: mounting failed with the error: No such device,解决方法:
yum clean all
yum update
yum install -y kernel kernel-devel kernel-headers gcc make
reboot
cd /opt/VBoxGuestAdditions-*/init
./vboxadd setup
reboot,
之后再执行4即可
6、设置开机自动挂载,vi /etc/rc.local,mount -t vboxsf www /var/www,chmod +x /etc/rc.d/rc.local
参考url:https://blog.csdn.net/daiyudong2020/article/details/58073520
以上是关于virtualBox+centos使用mount -t vboxsf挂载的主要内容,如果未能解决你的问题,请参考以下文章
VirtualBox CentOS7 Mini 安装增强工具
在VirtualBox ubuntu/linux虚拟机中挂载mount共享文件夹
virtualbox安装Ubuntu虚拟机实现与windows真机文件共享教程(mount -t vboxsf方法)