我是 Vagrant
的新手我已在我的ubuntu计算机上安装 ubuntu / xenial64 的 vagrant 和vagrant box。 (Ubuntu主机操作系统上的Ubuntu框)
在流浪者盒子里面,我安装了openjdk-8,firefox,jenkins。
如何访问Vagrant框中安装的firefox浏览器UI,以便我可以访问jenkins服务器。
使用 vagrant ssh 进入框后,当我在vagrant框中输入 firefox 时,它会说
错误:GDK_BACKEND与可用显示不匹配
当我尝试 sudo firefox
时,会发生同样的事情这是我的vagrantfile:
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/xenial64"
config.vm.network :private_network, ip: "192.168.68.8"
end
答案 0 :(得分:0)
Vagrant默认情况下以无头模式启动VM。您可以将其配置为从显示开始,方法是将其添加到Vagrantfile
:
config.vm.provider "virtualbox" do |vb|
vb.gui = true
end
然后重启VM。
vagrant reload