如何安装具有桌面GUI(gnome,kde,…)的Vagrant Linux机器。
有一个Vagrant box发行版已经有一个桌面环境?
在我做了一个“stream浪汉”之后,我该如何login到这个虚拟框中,并且GUI处于活动状态?
这个问题是一个复制与广泛的答案在这里: 使用vagrant与桌面环境运行虚拟机
是的,你需要在你的流浪文件中启用GUI,但首先你需要:
从上面的链接( https://stackoverflow.com/a/33138627/1412348 )中的答案之一,您可以使用以下vagrant文件:
Vagrant.configure(2) do |config| # Ubuntu 15.10 config.vm.box = "ubuntu/wily64" config.vm.provider "virtualbox" do |vb| # Display the VirtualBox GUI when booting the machine vb.gui = true end # Install xfce and virtualbox additions config.vm.provision "shell", inline: "sudo apt-get update" config.vm.provision "shell", inline: "sudo apt-get install -y xfce4 virtualbox-guest-dkms virtualbox-guest-utils virtualbox-guest-x11" # Permit anyone to start the GUI config.vm.provision "shell", inline: "sudo sed -i 's/allowed_users=.*$/allowed_users=anybody/' /etc/X11/Xwrapper.config" end
如果你想进入桌面GUI,你可以修改Vagrantfile来添加vb.gui = true
。 例如:
config.vm.provider "virtualbox" do |vb| # Display the VirtualBox GUI when booting the machine vb.gui = true # Customize the amount of memory on the VM: # vb.memory = "1024" end
然后,你可以从virtualbox中进入。