Vagrant remove uma das muitas caixas com diferentes versões

0

Eu estou tentando rodar o vagrant 1.7.4 em uma máquina windows 7. Eu tenho vagrant instalado junto com algumas caixas. Estou tentando excluir todas as minhas caixas e começar de novo. Abaixo está uma lista das minhas caixas:

vagrant box list

laravel/homestead (virtualbox, 0.4.2)

ubuntu/trusty64 (virtualbox, 20151208.1.0)

ubuntu/trusty64 (virtualbox, 20151217.0.0)

Isso é o que eu tentei até agora:

vagrant box remove ubuntu/trusty64

You requested to remove the box 'ubuntu/trusty64' with provider 'virtualbox'. This box has multiple versions. You must explicitly specify which version you want to remove with the --box-version flag. The available versions for this box are:

  • 20151208.1.0
  • 20151217.0.0
box remove --box-version ubuntu/trusty64 20151208.1.0

'box' is not recognized as an internal or external command, operable program or batch file.

vagrant box remove --box ubuntu/trusty64 -version 20151208.1.0

vagrant: no version found in package ersion

Como faço para remover esta caixa vagabunda com várias versões?

    
por user908759 14.08.2016 / 23:52

2 respostas

1

Eu resolvi o problema indo para:

C: \ Usuários \ nome do usuário \ .vagrant.d \ boxes

e excluir manualmente todas as caixas.

    
por 17.08.2016 / 00:34
3
vagrant box remove ubuntu/trusty64 --box-version 20151208.1.0

Fonte: link

    
por 03.03.2017 / 02:13