96818 发表于 2016-1-11 07:18:47

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.

  
  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:

  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:

  
  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
  
页: [1]
查看完整版本: ubuntu “vt-x/amd-v hardware acceleration virtualbox" 错误