Visualize box interface in virtualbox

0

How to use the virtual machine interface, not just the command terminal?

Follow the link to my vagrantfile:

link

    
asked by anonymous 21.10.2014 / 02:45

1 answer

0

From what I understand, you want to use the virtual machine interface, not just interact with it through the command line (after running vagrant ssh ), right?

Usually virtual machines are headless , which means that they are initialized without the UI (UI). To initialize the VM UI, simply add the following configuration in Vagrantfile :

config.vm.provider "virtualbox" do |v|
  v.gui = true
end
    
21.10.2014 / 13:19