0
How to use the virtual machine interface, not just the command terminal?
Follow the link to my vagrantfile:
0
How to use the virtual machine interface, not just the command terminal?
Follow the link to my vagrantfile:
0
From what I understand, you want to use the virtual machine interface, not just interact with it via the command line (after running vagrant ssh
), right?
Usually the virtual machines are headless, which means that they are initialized without the UI (user interface). To initialize the VM UI, simply add the following configuration to the Vagrantfile
:
config.vm.provider "virtualbox" do |v|
v.gui = true
end
Browser other questions tagged vagrant virtualbox
You are not signed in. Login or sign up in order to post.
I already did that but the box does not appear when I open virtualbox understands?
– Faro
I already understand your problem. I will complement the answer.
– Rodrigo Rigotti
In this case I need to configure something in the virtualbox interface itself, or just add this configuration that you put there in the vagrantfile?
– Faro
@Faro Just set the settings.
– Rodrigo Rigotti
Hasn’t worked yet, is there anything more to add in vagrantfile?
– Faro
As far as I know it’s just that. You spun a
vagrant down
and avagrant up
, or simply avagrant reload
, after that?– Rodrigo Rigotti
Solved expensive.
– Faro