zoukankan      html  css  js  c++  java
  • 启动安卓模拟器时出现问题

    Starting emulator for AVD 'NexusOne' ERROR: 32-bit Linux Android emulator binaries are DEPRECATED, to use them you will have to do at least one of the following: - Use the '-force-32bit' option when invoking 'emulator'. - Set ANDROID_EMULATOR_FORCE_32BIT to 'true' in your environment. Either one will allow you to use the 32-bit binaries, but please be aware that these will disappear in a future Android SDK release. Consider moving to a 64-bit Linux system before that happens.

    提示我们有两种方法可以解决:
    1)、修改~/.bashrc,添加一句:export ANDROID_EMULATOR_FORCE_32BIT=true;重启;
    2)、

    1. In Eclipse, click your Android project folder and then select Run > Run Configurations...

    2. In the left panel of the Run Configurations dialog, select your Android project run configuration or create a new configuration.

    3. Click the Target tab.

    In the Additional Emulator Command Line Options field, enter:

    -force-32bit 

    Run your Android project using this run configuration.

    或者打开 Target tab,输入-force-32bit,这种方法运行成功。

    之后又与到了这个问题

    ioctl(KVM_CREATE_VM) failed: Device or resource busy
    ko:failed to initialize KVM
    因为在ubuntu下同时打开了virtualbox跟安卓模拟器。。关掉就好了
    感谢http://blog.csdn.net/tian9246/article/details/39437015
    http://mcns.blog.chinaunix.net/uid-9672747-id-4637272.html
  • 相关阅读:
    Linux下安装JDK
    Flink源码阅读(五)——Flink中任务相关的核心类简析
    使用CloudFlare Worker 来免费部署 JSProxy 服务
    Nginx:进程调度
    Javassist基本用法汇总
    IO
    IO
    springcloud3(五) spring cloud gateway动态路由的四类实现方式
    架构设计(二) 互联网网关平台对比
    Python 的协程
  • 原文地址:https://www.cnblogs.com/vactor/p/4997963.html
Copyright © 2011-2022 走看看