Olá, Alurenses... Estou a muito tempo tentando executar o comando vagrant up e acontece algo curioso, diria preguiçoso. Toda vez que rodo o comando acima parece que o dowload vai começar mas nunca começa. Não lança erro algum só simplesmente para, mas o cursor continua piscando. Acada tentativa, essa para em um ponto diferente.
saida
λ vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Box 'hashicorp/precise32' could not be found. Attempting to find and install...
default: Box Provider: virtualbox
default: Box Version: >= 0
e simplesmente para
tem umas tentativas que chegou a iniciar o download da box masi parou.
outro exemplo - dessa vez parou montanto o download
λ vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Box 'hashicorp/precise32' could not be found. Attempting to find and install...
default: Box Provider: virtualbox
default: Box Version: >= 0
==> default: Loading metadata for box 'hashicorp/precise32'
default: URL: https://vagrantcloud.com/hashicorp/precise32
==> default: Adding box 'hashicorp/precise32' (v1.0.0) for provider: virtualbox
default: Downloading: https://vagrantcloud.com/hashicorp/boxes/precise32/versions/1.0.0/providers/virtualbox.box
==> default: Box download is resuming from prior download progress
default: Progress: 100% (Rate: 108/s, Estimated time remaining: --:--:--)
meu Vagrantfile
Vagrant.configure("2") do |config|
# faz referencia ao ubunto linux
config.vm.box = "hashicorp/precise32"
# nome da maquina virtual é web
config.vm.define :web do |web_config|
end
end
estou usando windows 10, migrado do windows 7. Instalei ontem VirtualBox e Vagrant, portando estou com a última versão dos dois. O que fazer?