How to use the virtual machine interface, not just the command terminal?
Follow the link to my vagrantfile:
How to use the virtual machine interface, not just the command terminal?
Follow the link to my vagrantfile:
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