博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
‘vagrant up’ fails to mount linked directory /vagrant
阅读量:5276 次
发布时间:2019-06-14

本文共 1213 字,大约阅读时间需要 4 分钟。

偶然出现错误:

Failed to mount folders in Linux guest. This is usually becausethe "vboxsf" file system is not available. Please verify thatthe guest additions are properly installed in the guest andcan work properly. The command attempted was:mount -t vboxsf -o uid=`id -u vagrant`,gid=`getent group vagrant | cut -d: -f3` vagrant /vagrantmount -t vboxsf -o uid=`id -u vagrant`,gid=`id -g vagrant` vagrant /vagrantThe error output from the last command was:/sbin/mount.vboxsf: mounting failed with the error: No such device

 

[root@localhost ~]# yum update -y[root@localhost ~]# yum install kernel-devel-$(uname -r) kernel-headers-$(uname -r) dkms -y#再來就是安裝 VirtualBox Guest Additions kernel modules[root@localhost ~]# /etc/init.d/vboxadd setupRemoving existing VirtualBox DKMS kernel modules           [  OK  ]Removing existing VirtualBox non-DKMS kernel modules       [  OK  ]Building the VirtualBox Guest Additions kernel modules     [  OK  ]Doing non-kernel setup of the Guest Additions              [  OK  ]Starting the VirtualBox Guest Additions                    [  OK  ][root@localhost ~]#

 再來就可以重新啟動 Guest OS 確認啟動過程,應該就可以正常掛載 /vagrant 目錄了。

$ vagrant reload

 

转载于:https://www.cnblogs.com/jinglingwuzhe/p/5063109.html

你可能感兴趣的文章
MongoDB-JAVA-Driver 3.2版本常用代码全整理(2) - 查询
查看>>
NPOI处理Word文本中上下角标
查看>>
Android笔记 Handler
查看>>
如何阅读大型前端开源项目的源码(转)
查看>>
java.util.Arrays类详解
查看>>
NYOJ-626-intersection set(二分查找)
查看>>
项目管理之路(1):初步踏入项目管理
查看>>
Java 中 静态方法与非静态方法的区别
查看>>
echarts饼图显示百分比
查看>>
JMS消息
查看>>
Jenkins+ProGet+Windows Batch搭建全自动的内部包(NuGet)打包和推送及管理平台
查看>>
php上传文件及头像预览
查看>>
大四java实习生的一些经历
查看>>
线程池的概念
查看>>
Oracle_Statspack性能诊断工具
查看>>
Java 序列化
查看>>
Java 时间处理实例
查看>>
Java 多线程编程
查看>>
Java 数组实例
查看>>
mysql启动过程
查看>>