Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Docker Quickstart Terminal. Unable to start the VM

Tags:

docker

After restarting machine and opening the Docker Quickstart Terminal, I get the following error:

Unable to start the VM: C:\Program Files\Oracle\VirtualBox\VBoxManage.exe startvm default --type headless failed:
VBoxManage.exe: error: Raw-mode is unavailable courtesy of Hyper-V. (VERR_SUPDRV_NO_RAW_MODE_HYPER_V_ROOT)
VBoxManage.exe: error: Details: code E_FAIL (0x80004005), component ConsoleWrap, interface IConsole

Details: 00:00:02.064418 Power up failed (vrc=VERR_SUPDRV_NO_RAW_MODE_HYPER_V_ROOT, rc=E_FAIL (0X80004005))
Looks like something went wrong in step ´Checking status on default´... Press any key to continue...
like image 365
nvillalobos Avatar asked Apr 03 '18 16:04

nvillalobos


1 Answers

Enable Hyper V as following:

Run a command prompt as administrator and execute:

dism /Online /Disable-Feature:Microsoft-Hyper-V

reboot and

bcdedit /set hypervisorlaunchtype off
like image 191
Bub Espinja Avatar answered Sep 18 '22 23:09

Bub Espinja