无法创建 SD 卡(& 在 AVD 文件夹中)

Kap*_*pil 7 android eclipse sd-card

Ubuntu 版本 14.04 LTS 我的机器戴尔 Inspiron 15 3000 系列

我正在按照以下文章安装 Android 应用程序开发环境 [目标超级新手; IDE Eclipse]

Ubuntu 上 Android SDK / ADT Bundle 的完整安装指南

完成第 4 步后,我还没有收到所需的消息。进一步...我已经到了第 6 步。在“单击您的虚拟设备,然后单击开始....”之后,我收到消息-

Error: Failed to create the SD card.
Error: Failed to create the sdcard in the AVD folder.
Run Code Online (Sandbox Code Playgroud)

我执行了以下命令作为补救措施

apt-get install lib32z1 lib32ncurses5 lib32bz2-1.0
apt-get update
Run Code Online (Sandbox Code Playgroud)

现在,我在消息框中收到以下错误

Error: .../tools/mksdcard:error while loading shared libraries libgcc_s.so.1: cannot open shared object file: No such file or directory
Error: Failed to create the SD card.
Error: Failed to create the sdcard in the AVD folder.
Run Code Online (Sandbox Code Playgroud)

小智 12

我刚刚在我的 Ubuntu Trusty 开发机器上遇到了同样的问题。你可以修复这个错误

error while loading shared libraries libgcc_s.so.1: cannot open shared object file: No such file or directory
Run Code Online (Sandbox Code Playgroud)

通过安装相应的 32 位库:

sudo apt-get install libgcc1:i386
Run Code Online (Sandbox Code Playgroud)

我希望 Google 不再需要 32 位开发平台,Android 是我仍然携带 32 位库的唯一原因。