ubuntu “vt-x/amd-v hardware acceleration virtualbox" 错误

Before changing BIOS settings we may want to see if hardware virtualization (VT-x for Intel, AMD-V for AMD processors) was already enabled.

From a terminal issue

grep --color vmx /proc/cpuinfo ## for an Intel processor
grep --color svm /proc/cpuinfo ## for an AMD processor

If virtualization was enabled the flag vmx (for Intel CPUs) or svm (for AMD CPUs) will be colored.

enter image description here

If not, and the CPU supports hardware virtualization, we need to enable this in the computer BIOS.

See with the manual for the hardware and search for Virtualization, Virtualization Technology (VT-x), or similar, here shown for an Award BIOS:

Award BIOS Virtualization Flag

Set this entry to Enabled in case it is not yet set.

We then can choose to use hardware virtualization in the virtual machine's System -> Acceleration settings:

enter image description here

By this we use hardware virtualization for optimal performance, and we would even be able to run a 64-bit guest OS on a 32-bit host for testing.

来源:http://askubuntu.com/questions/256792/how-do-i-enable-hardware-virtualization-technology-vt-x-for-use-in-virtualbox

猜你喜欢

转载自justcoding.iteye.com/blog/2048209
今日推荐