gpt4 book ai didi

vagrant - 在 Vagrantfile 设置中启用 gui

转载 作者:行者123 更新时间:2023-12-03 04:33:33 25 4
gpt4 key购买 nike

我尝试在 Vegrantfile 中使用 configure.vm.boot_mode = :gui,但收到此错误:以下设置不应存在:boot_mode

我现在解决这个问题的方法是使用供应商配置(virtualbox):

config.vm.provider "virtualbox" do |v|
v.gui = true
end

但我想在不必要时避免特定于供应商的任何内容。有什么与供应商无关的替代方案?是否有 boot_mode 的替代品?

最佳答案

vm.boot_mode 已随 Vagrant 1.1 一起消失,但如果将其包含在 V1 配置 block 中,您仍然可以使用它:

Vagrant.configure("1") do |config|
config.vm.boot_mode = :gui
end

Vagrant.configure("2") do |config|
# V2 Config...
end

关于vagrant - 在 Vagrantfile 设置中启用 gui,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19013851/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com