VT-x error when setting up VirtualBox on Ubuntu
Hire the world's top talent on demand or became one of them at Toptal: https://topt.al/25cXVn
and get $2,000 discount on your first invoice
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Underwater World
--
Chapters
00:00 Vt-X Error When Setting Up Virtualbox On Ubuntu
00:53 Accepted Answer Score 43
01:14 Answer 2 Score 1
01:28 Answer 3 Score 5
02:00 Thank you
--
Full question
https://superuser.com/questions/957132/v...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#ubuntu #virtualbox #vtx
#avk47
ACCEPTED ANSWER
Score 43
What solved my issue was using less than 3 GB of ram in the virtual box session. I was originally attempting to utilize roughly 6 GB.
You are trying to allocate >3GB of RAM to the VM. This requires: (a) a 64 bit host system; and (b) true hardware pass-through ie VT-x.
ANSWER 2
Score 5
In my case Memory(RAM) was not a problem, just VT-x wasn't enabled in BIOS. Or in some cases, CPU may not have support of VT at all.
To check whether your CPU supports it or not. try:
sudo apt-get install cpu-checker
sudo kvm-ok
Second command will output if VT is enabled or not or if it's available at all.
If it does, go to BIOS and enable it. It should be named Intel Virtualization Technology,
Intel VT-x,
Virtualization Extensions,
Vanderpool,
or something similar.
ANSWER 3
Score 1
I've been dealing with this issue for a few hours, trying to solve it with probably all the answers I could find on the Internet.
What have worked for me was removing Hyper-V role from my Windows...
MJ