- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想使用 vagrant 设置环境,但在 vagrant up 后显示错误。这是我的规范
我正在使用 :
- OS X 优胜美地版本 10.10.5
- VirtualBox 版本 5.2.6
- Vagrant 2.0.1
这是我的 Vagrant 文件
Vagrant.configure("2") do |config|
config.vm.box = "centos/7"
config.vm.network "private_network", ip: "192.168.33.99"
config.vm.synced_folder "./", "/vagrant", type:"virtualbox", :owner => 'apache', :group => 'apache', mount_option: ['dmode=777', 'fmode=755']
end
Vagrant was unable to mount VirtualBox shared folders. This is usually
because the filesystem "vboxsf" is not available. This filesystem is
made available via the VirtualBox Guest Additions and kernel module.
Please verify that these guest additions are properly installed in the
guest. This is not a bug in Vagrant and is usually caused by a faulty
Vagrant box. For context, the command attempted was:
mount -t vboxsf -o uid=48,gid=48 vagrant /vagrant
The error output from the command was:
mount: unknown filesystem type 'vboxsf'
vagrant plugin install vagrant-vbguest
vagrant vbguest
The distribution packages containing the headers are probably:
kernel-devel kernel-devel-3.10.0-862.14.4.el7.x86_64
An error occurred during installation of VirtualBox Guest Additions 5.2.6. Some functionality may not work as intended.
In most cases it is OK that the "Window System drivers" installation failed.
Redirecting to /bin/systemctl start vboxadd.service
Job for vboxadd.service failed because the control process exited with error code. See "systemctl status vboxadd.service" and "journalctl -xe" for details.
Unmounting Virtualbox Guest Additions ISO from: /mnt
vagrant plugin install vagrant-winnfsd
最佳答案
我相信这是一个符号链接(symbolic link)问题,可以通过运行 ln -sf /opt/VBoxGuestAdditions-5.1.20/lib/VBoxGuestAdditions/mount.vboxsf /sbin/mount.vboxsf
来解决.这里还有一张关于这个确切问题的票 https://www.virtualbox.org/ticket/16670#comment:3这似乎解决了。
关于vagrant - vagrant up 后未知文件系统类型 'vboxsf',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53608950/
我想使用 vagrant 设置环境,但在 vagrant up 后显示错误。这是我的规范 我正在使用 : - OS X 优胜美地版本 10.10.5 - VirtualBox 版本 5.2.6 - V
所以我一直在尝试通过 Vagrant/VirtualBox 安装 Laravel Homestead。它曾经有效,但现在根本不起作用。除了来自客户机的错误中提到的日志文件 /var/log/vboxa
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎不是关于 a specific programming problem, a softwa
我正在开发一个使用 Vagrant(带有 Linux 客户机)作为构建环境的项目。构建过程依赖于 mmap() 来构建特定于应用程序的二进制文件。不幸的是,vboxsf,VirtualBox 与主机共
我有以下错误: Vagrant was unable to mount VirtualBox shared folders. This is usually because the filesyste
我在 Ubuntu 14.04 64 位桌面上安装了 VirtualBox 4.3.10 和 Vagrant 1.4.3。 之前,使用 vagrant 技术,但这次是多个问题。让我描述一下我做了什么
问题 我在 Windows 10 上安装了 Vagrant,因此我可以在虚拟机中创建个人本地开发环境。我读到的关于 Vagrant 的所有内容都说我什至可以启动多个系统并使用 NAT 端口转发测试它们
我是这个论坛的新手,但我偶尔会使用 vbox。我有 Windows 7 主机和 ubuntu 9.10 guest ,它们在安装了 vboxadditions、共享文件夹和一切完美的情况下都可以正常工
我是一名优秀的程序员,十分优秀!