Solucionado (ver solução)
Solucionado
(ver solução)
2
respostas

Disk cannot be decreased in size - vagrant up

Estou no diretório do projeto 'C:\Users\Benevides\Documents\jenkins\1110-aula-inicial' e ao rodar o comando vagrant up, eu recebo esse erro abaixo

λ vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Checking if box 'ubuntu/bionic64' version '20210125.0.0' is up to date...
==> default: Clearing any previously set forwarded ports...
==> default: Clearing any previously set network interfaces...
==> default: Preparing network interfaces based on configuration...
    default: Adapter 1: nat
    default: Adapter 2: hostonly
==> default: You are trying to forward to privileged ports (ports <= 1024). Most
==> default: operating systems restrict this to only privileged process (typically
==> default: processes running as an administrative user). This is a warning in case
==> default: the port forwarding doesn't work. If any problems occur, please try a
==> default: port higher than 1024.
==> default: Forwarding ports...
    default: 81 (guest) => 81 (host) (adapter 1)
    default: 80 (guest) => 80 (host) (adapter 1)
    default: 3306 (guest) => 3306 (host) (adapter 1)
    default: 8080 (guest) => 8080 (host) (adapter 1)
    default: 9000 (guest) => 9000 (host) (adapter 1)
    default: 19999 (guest) => 19999 (host) (adapter 1)
    default: 9001 (guest) => 9001 (host) (adapter 1)
    default: 22 (guest) => 2222 (host) (adapter 1)
==> default: Running 'pre-boot' VM customizations...
==> default: Disk cannot be decreased in size. 30720 MB requested but disk is already 40960 MB.
==> default: Booting VM...
There was an error while executing `VBoxManage`, a CLI used by Vagrant
for controlling VirtualBox. The command and stderr is shown below.

Command: ["startvm", "786a1415-fa91-4f34-be51-f4caa499049e", "--type", "headless"]

Stderr: VBoxManage.exe: error: Not in a hypervisor partition (HVP=0) (VERR_NEM_NOT_AVAILABLE).
VBoxManage.exe: error: AMD-V is disabled in the BIOS (or by the host OS) (VERR_SVM_DISABLED)
VBoxManage.exe: error: Details: code E_FAIL (0x80004005), component ConsoleWrap, interface IConsole
2 respostas
solução!

Olá, Jonathan. Tudo bem?

Acredito que o que está causando o problema na inicialização da VM está sendo descrito na última linhas da saída do comando.

VBoxManage.exe: error: AMD-V is disabled in the BIOS (or by the host OS) (VERR_SVM_DISABLED)

O Vagrant utiliza provedores de virtualização para criar/gerenciar as máquinas. O erro indica que a virtualização não está ativada na sua BIOS. Você chegou a habilitar a opção?

O procedimento pode variar a depender de sua máquina, mas, geralmente, você deve:

  1. Desligar/reiniciar o computador.
  2. Pressionar a tecla F2 repetidamente logo após ligar para acessar a interface da BIOS
  3. Navegar até a aba "avançado" e habilitar a opção que possuir algo como "virtualization", "VT-X" ou algo relacionado (geralmente só tem uma).
  4. Salvar e sair.

Espero ter ajudado. Se tiver alguma dúvida, é só dizer.

Também pode ser que tenha que desabilitar o secure boot na bios.