VT-x error when setting up VirtualBox on Ubuntu
Become or hire the top 3% of the developers on Toptal https://topt.al/25cXVn
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Isolated
--
Chapters
00:00 Question
01:18 Accepted answer (Score 43)
01:50 Answer 2 (Score 5)
02:34 Answer 3 (Score 1)
02:58 Thank you
--
Full question
https://superuser.com/questions/957132/v...
Question links:
[image]: https://i.stack.imgur.com/J1oxX.png
--
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