转载自:

https://software.intel.com/en-us/blogs/2012/03/12/how-to-start-intel-hardware-assisted-virtualization-hypervisor-on-linux-to-speed-up-intel-android-x86-emulator

最后有简述。

How to Start Intel Hardware-assisted Virtualization (hypervisor) on Linux to Speed-up Intel Android x86 Emulator

The Intel Hardware Accelerated Execution Manager (Intel® HAXM) is a hardware-assisted virtualization engine (hypervisor) that uses Intel Virtualization Technology (VT) to speed up Android app emulation on a host machine. In combination with Android x86 emulator images provided by Intel and the official Android SDK Manager, HAXM allows for faster Android emulation on Intel VT enabled systems. HAXM for both Windows and OS X are available now.

Since Google mainly support Android build on Linux platform (with Ubuntu 64-bit OS as top Linux platform, and OS X as 2nd), and a lot of Android Developers are using AVD on Eclipsehosted by aLinux system, it is very critical that Android developers take advantage of Intel hardware-assisted KVM virtualization for Linux just like HAXM for Windows and OS X.

Beloware the quick step-by-step's on how to install, enable KVM on Ubuntu host platform and start Intel Android x86 Gingerbread emulator with Intel hardware-assisted virtualization (hypervisor). The result is very pleasing andAVD runs significantly faster and smoother than without hypervisor

KVM Installation

I referred the instructions from Ubuntu community documentation page. to get KVM installed.To see if your processor supports hardware virtualization, you can review the output from this command:

$ egrep -c '(vmx|svm)' /proc/cpuinfo

I got 64. If 0 it means that your CPU doesn't support hardware virtualization.

Next is to install CPU checker:

$ sudo apt-get install cpu-checker

Now you can check if your cpu supports kvm:

$kvm-ok

If you see:
"INFO: Your CPU supports KVM extensions
INFO: /dev/kvm exists
KVM acceleration can be used"

It means you can run your virtual machine faster with the KVM extensions.

If you see:
"INFO: KVM is disabled by your BIOS
HINT: Enter your BIOS setup and enable Virtualization Technology (VT),
and then hard poweroff/poweron your system
KVM acceleration can NOT be used"

You need to go to BIOS setup and enable the VT.

Use a 64 bit kernel

Running a 64 bit kernel on the host operating system is recommended but not required.
To serve more than 2GB of RAM for your VMs, you must use a 64-bit kernel (see 32bit_and_64bit). On a 32-bit kernel install, you'll be limited to 2GB RAM at maximum for a given VM.
Also, a 64-bit system can host both 32-bit and 64-bit guests. A 32-bit system can only host 32-bit guests.
To see if your processor is 64-bit, you can run this command:

$ egrep -c ' lm ' /proc/cpuinfo

If 0 is printed, it means that your CPU is not 64-bit.
If 1 or higher, it is. Note: lm stands for Long Mode which equates to a 64-bit CPU.
Now see if your running kernel is 64-bit, just issue the following command:

$ uname -m

x86_64 indicates a running 64-bit kernel. If you see i386, i486, i586 or i686, you're running a 32-bit kernel.

Install KVM

For Ubuntu Lucid (10.04) or later:

$ sudo apt-get install qemu-kvm libvirt-bin ubuntu-vm-builder bridge-utils

You may ignore the Postfix Configuration below by selecting "No Configuration"

Next is to add your <username> account to the group kvm and libvirtd

$ sudo adduser your_user_name kvm
$ sudo adduser your_user_name libvirtd

After the installation, you need to relogin so that your user account becomes an effective member of kvm and libvirtd user groups. The members of this group can run virtual machines.

Verify Installation
You can test if your install has been successful with the following command:
$ sudo virsh -c qemu:///system list
Your screen will paint the following below if successful:
Id Name State
----------------------------------


Start the AVD from Android SDK Directly fromTerminal

Now start the Android for x86 Intel Emulator using the following command:

$ <SDK directory>/tools/emulator-x86 -avd Your_AVD_Name -qemu -m 2047 -enable-kvm

Only a 64-bits Ubuntu can allow you to run allocated Memory of 2G or more. My 64-bit Ubuntu has 6G of Memory, so I used 1/3 of it for Android AVD. My AVD name is Intel_Atom_x86_64. '-qemu' provides the options to qemu, and '-m' specifies the amount of memory for the emulated Android (i.e. guest). If you use too small value for that, it's possible that performance is bad because of frequent swapping activities. Add '-show-kernel' to see the message from the kernel.

Start the AVD byAVD Managerin Eclipse

Below is procedures recommended by Google. If you are running the emulator from Eclipse, run your Android application with an x86-based AVD and include the KVM options:


  • In Eclipse, click your Android project folder and then select Run > Run Configurations...
  • In the left panel of the Run Configurations dialog, select your Android project run configuration or create a new configuration.
  • Click the Target tab.
  • Select the x86-based AVD you created previously.
  • In the Additional Emulator Command Line Options field, enter:
    -qemu -m 2047 -enable-kvm

  • Run your Android project using this run configuration.



简述一下:

Android模拟器有一个叫HAXM的东西,这个东西是Intel给Android模拟器做硬件加速用的。需要支持VT技术的Intel CPU以及Windows系统。

对于使用AMD+Ubuntu的似乎就要悲剧了,其实Linux本身就有类似的东西,叫做KVM,上面这文章就是教你如何安装KVM的。

下面的步骤是按照上面文章来做的,部分简略。

1. 检查你的CPU是否支持虚拟技术

$ egrep -c '(vmx|svm)' /proc/cpuinfo
如果不是0,那么你的CPU就是支持硬件虚拟化技术的。


2. 检查是否支持KVM

$sudo apt-get install cpu-checker$kvm-ok
如果提示

INFO: /dev/kvm exists
KVM acceleration can be used

那么你是可以使用KVM的。


3. 安装KVM

$sudo apt-get install qemu-kvm libvirt-bin ubuntu-vm-builder bridge-utils

4. 把当前用户加入到kvm和libvirtd组

$sudo adduser your_user_name kvm$sudo adduser your_user_name libvirtd
加入以后,需要注销或重启才能生效


5. 重新创建一个模拟器

先在SDK Manager那里下载一个Intel Atom X86 System Image,然后在Android Studio那里创建一个新的Virtual Device,选择X86的镜像。

这时候,右边的System Image就会提示是X86,但就不会再有一行红色字提示安装HAXM了,如下图。



6. 这速度,这酸爽


更多相关文章

  1. Android(安卓)沉浸式状态栏 支持4.4及以上。
  2. android中自定义的一个可以弹出类似于提示更新的对话框
  3. android中ImageView、ImageButton、Button之间的区别
  4. android 自动化测试 monkey
  5. Android(安卓)studio 启动模拟器报错-Turn off Hyper-V
  6. 支持https但不验证证书的HttpClient
  7. NDK官方开发指南翻译之 CPU_ARM_Neon
  8. 判断android设备是否支持多点触控
  9. Android:网络编程

随机推荐

  1. 关于Hadoop查看进程时jps命令出现Error:
  2. Android JVM的运行过程
  3. IT十八掌作业_java基础第20天_断点续传、
  4. Java常见对象之String
  5. JVM 性能调优监控工具
  6. Java的Web项目中Web.xml配置文件元素详解
  7. 如果服务器位于不同的位置,如何保存客户端
  8. 圆形边框一边只有java
  9. java基础---JVM---调优,垃圾收集器,内存
  10. [疯狂Java]NIO.2:walkFileTree、FileVisit