我尝试configure.vm.boot_mode = :gui
在 Vegrantfile 中使用,但出现此错误:The following settings shouldn't exist: boot_mode
我现在修复它的方法是使用供应商配置(virtualbox):
config.vm.provider "virtualbox" do |v|
v.gui = true
end
但我想在不必要的时候避免特定于供应商的任何事情。有什么与供应商无关的替代方案?有替代品boot_mode
吗?