从命令行运行它会导致分段错误:
$ emulator -avd nexus_s
Segmentation fault (core dumped)
但是,直接运行 emulator-arm 如下,效果很好。
$ emulator-arm -avd nexus_s
我怀疑它正在尝试运行 mips 或 x86 版本的模拟器。 有没有办法配置模拟器启动哪个可执行文件?
这一切都是在更新到 android sdk 17 后开始的。
添加 -verbose 标志会给出以下输出(我认为不会添加任何信息):
$ emulator -verbose -avd nexus_s
emulator: found SDK root at /opt/sdk
emulator: Android virtual device file at: /home/grebulon/.android/avd/nexus_s.ini
emulator: virtual device content at /home/grebulon/.android/avd/nexus_s.avd
emulator: virtual device config file: /home/grebulon/.android/avd/nexus_s.avd/config.ini
emulator: using core hw config path: /home/grebulon/.android/avd/nexus_s.avd/hardware-qemu.ini
emulator: Found AVD target API level: 17
emulator: 'magic' skin format detected: 480x800
emulator: autoconfig: -skin 480x800
emulator: autoconfig: -skindir (null)
emulator: keyset loaded from: /home/grebulon/.android/default.keyset
emulator: found magic skin width=480 height=800 bpp=16
emulator: autoconfig: -kernel /opt/sdk/system-images/android-17/armeabi-v7a//kernel-qemu
emulator: autoconfig: -ramdisk /opt/sdk/add-ons/addon-google_apis-google-17/images/armeabi-v7a//ramdisk.img
emulator: Using initial system image: /opt/sdk/add-ons/addon-google_apis-google-17/images/armeabi-v7a//system.img
emulator: autoconfig: -data /home/grebulon/.android/avd/nexus_s.avd/userdata-qemu.img
emulator: autoconfig: -initdata /home/grebulon/.android/avd/nexus_s.avd/userdata.img
emulator: autoconfig: -cache /home/grebulon/.android/avd/nexus_s.avd/cache.img
emulator: Physical RAM size: 343MB
Content of hardware configuration file:
hw.cpu.arch = arm
hw.cpu.model = cortex-a8
hw.ramSize = 343
hw.screen = touch
hw.mainKeys = yes
hw.trackBall = no
hw.keyboard = no
hw.keyboard.lid = no
hw.keyboard.charmap = qwerty2
hw.dPad = no
hw.gsmModem = yes
hw.gps = yes
hw.battery = no
hw.accelerometer = yes
hw.audioInput = yes
hw.audioOutput = yes
hw.sdCard = yes
disk.cachePartition = yes
disk.cachePartition.path = /home/grebulon/.android/avd/nexus_s.avd/cache.img
disk.cachePartition.size = 66m
hw.lcd.width = 480
hw.lcd.height = 800
hw.lcd.depth = 16
hw.lcd.density = 240
hw.lcd.backlight = yes
hw.gpu.enabled = yes
hw.camera.back = none
hw.camera.front = none
vm.heapSize = 32
hw.sensors.proximity = yes
hw.sensors.magnetic_field = yes
hw.sensors.orientation = yes
hw.sensors.temperature = yes
kernel.path = /opt/sdk/system-images/android-17/armeabi-v7a//kernel-qemu
kernel.parameters = android.checkjni=1
disk.ramdisk.path = /opt/sdk/add-ons/addon-google_apis-google-17/images/armeabi-v7a//ramdisk.img
disk.systemPartition.initPath = /opt/sdk/add-ons/addon-google_apis-google-17/images/armeabi-v7a//system.img
disk.systemPartition.size = 200m
disk.dataPartition.path = /home/grebulon/.android/avd/nexus_s.avd/userdata-qemu.img
disk.dataPartition.size = 209m
avd.name = nexus_s
.
QEMU options list:
emulator: argv[00] = "/opt/sdk/tools/emulator64-arm"
emulator: argv[01] = "-android-hw"
emulator: argv[02] = "/home/grebulon/.android/avd/nexus_s.avd/hardware-qemu.ini"
Concatenated QEMU options:
/opt/sdk/tools/emulator64-arm -android-hw /home/grebulon/.android/avd/nexus_s.avd /hardware-qemu.ini
emulator: registered 'boot-properties' qemud service
emulator: nand_add_dev: system,size=0xc800000,initfile=/opt/sdk/add-ons/addon-google_apis-google-17/images/armeabi-v7a//system.img
emulator: mapping 'system' NAND image to /tmp/android-grebulon/emulator-RSuUtb
emulator: rounding devsize up to a full eraseunit, now c810000
emulator: nand_add_dev: userdata,size=0xd100000,file=/home/grebulon/.android/avd/nexus_s.avd/userdata-qemu.img
emulator: rounding devsize up to a full eraseunit, now d116000
emulator: registered 'boot-properties' qemud service
emulator: Adding boot property: 'dalvik.vm.heapsize' = '32m'
emulator: Adding boot property: 'qemu.sf.lcd_density' = '240'
emulator: Adding boot property: 'qemu.hw.mainkeys' = '1'
emulator: Adding boot property: 'qemu.sf.fake_camera' = 'none'
emulator: nand_add_dev: cache,size=0x4200000,file=/home/grebulon/.android/avd/nexus_s.avd/cache.img
emulator: Initializing hardware OpenGLES emulation support
Segmentation fault (core dumped)
按照 CommonsWare 的提示,我终于找到了解决方案。 重命名 libOpenglRender.so 使问题消失。
mv tools/lib/libOpenglRender.so tools/lib/libOpenglRender.so.xxx
粘贴到~/.android/avd/.avd/config.ini
hw.gpu.mode = swiftshader_indirect
我的例子就是这样解决的。
在我的 Ubuntu 12.04 系统上,我通过确保 AVD 配置中未打开“使用主机 GPU”来解决此问题。
我在 Ubuntu 20.04 上也遇到了同样的问题。重命名 libOpenglRender.so 对我来说很有效,但模拟器需要很长时间才能初始化。另外,我不得不重新安装 Ubuntu(出于不同的原因),然后在打开模拟器时开始出现
emulator: ERROR: Could not load OpenGLES emulation library
错误。
在搜索更多有关这些问题的信息后,我发现问题出在视频驱动程序上。我使用的是 Nouveau,在更改为 Nvidia 驱动程序后,我不再需要重新命名 libOpenglRender.so,现在模拟器初始化速度非常快,不会显示任何错误消息。
我在 Debian Wheezy 上也遇到了同样的问题。 grebulon 的答案对我来说有点有用,但是模拟器太慢了,所以我开始以正确的方式修复它(tm)。
在这种情况下
Segmentation fault
可能表明OpenGL有问题。
(请注意,日志的最后一行是“模拟器:初始化硬件 OpenGLES 模拟支持”)
就我而言,通过
/var/log/Xorg.0.log
搜索“GL”会显示一些 NVidia GLX 驱动程序(来自进入数字天堂的旧显卡)。鉴于我有 AMD Radeon,我卸载了其中包含“nvidia”的每个软件包(列表:apt-get search nvidia | grep ^i
)并安装:
# apt-get install libgl1-fglrx-glx
重启模拟器后抱怨缺少
libOpenglRender.so
和 libGL.so
,我这样解决了:
# echo "/opt/adt/sdk/tools/lib" > /etc/ld.so.conf.d/android_stuff.conf
# ldconfig
# cd /opt/adt/sdk/tools/lib
# ln -s /usr/lib/x86_64-linux-gnu/libGL.so.1 libGL.so
请注意,我的情况可能是独一无二的(当我从 NVidia 转到 AMD 时问题就开始了),但问题的根源可能是相似的(OpenGL)。我希望它对某人有帮助。
更新:仍然不起作用,看起来我的驱动程序不支持 OpenGL 中的 16 位颜色...将进一步调查。
如果您在这里找不到答案,您应该订阅:
您将收到有关此问题的更新并找到一些解决方法(例如重命名 lib*.* 文件)。
通过android studio擦除数据和冷启动设备解决了ubuntu 16.04中的这个问题
我在 lxc 环境中遇到了这个问题。拿到后
./Android/Sdk/emulator/emulator @Pixel_3a_API_34_extension_level_7_x86_64
Segmentation fault (core dumped)
我的选择取得了成功
./Android/Sdk/emulator/emulator @Pixel_3a_API_34_extension_level_7_x86_64 -no-qt
这是无头模式(根本没有窗口,所以不要感到惊讶)。它告诉我问题出在图形表示中。
然后我发现
-gpu auto
、-gpu swiftshader_indirect
和 -gpu guest
失败了,而 -gpu host
有效。
所以,我机器上的最后一行是:
./Android/Sdk/emulator/emulator @Pixel_3a_API_34_extension_level_7_x86_64 -gpu host
为了使其持久,我必须将其添加到
~/.android/avd/Pixel_3a_API_34_extension_level_7_x86_64.avd/config.ini
,感谢DARUMA:
$ tail ~/.android/avd/Pixel_3a_API_34_extension_level_7_x86_64.avd/config.ini
hw.gpu.mode = host
输入命令
$ 模拟器臂@nexus_s
希望这有帮助:-)