Visualisar box interface in virtualbox

Asked

Viewed 423 times

0

1 answer

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
  • I already did that but the box does not appear when I open virtualbox understands?

  • I already understand your problem. I will complement the answer.

  • 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 Just set the settings.

  • Hasn’t worked yet, is there anything more to add in vagrantfile?

  • As far as I know it’s just that. You spun a vagrant down and a vagrant up, or simply a vagrant reload, after that?

  • Solved expensive.

Show 2 more comments

Browser other questions tagged

You are not signed in. Login or sign up in order to post.