-3

I am new to vagrant and I keep getting this error.

How can I properly run vagrant up so that I can continue with the setup process?

sebenalern
  • 2,515
  • 3
  • 26
  • 36

1 Answers1

0

so once you have Vagrant and VirtualBox installed, the next steps are to create a Vagrantfile which basically is the configuration file for the VM you will build. It contains box information as well as network, sync folder and any provisioning you'll do on the VM.

for example, if you want to create an ubuntu VM:

$ vagrant init <ubuntu/wily64>
$ vagrant up

The first command (vagrant init) might take some time as it will download a VM from internet but you only run it once. then vagrant up will boot the VM

Frederic Henri
  • 51,761
  • 10
  • 113
  • 139