我正在尝试让Android模拟器在我的64位Ubuntu12.04发行版上运行。首先,我必须安装ia32-libs,以解决以前(失败)尝试中遇到的一些早期问题。
然后我下载并安装了64位linux发行版。我导航到命令行上的android应用程序(SDK ),并运行它。我下载了Android工具和最新版本的Android操作系统。
我现在想运行emulator,但是当我运行时,我会得到以下错误:
myUser@myMachine:~/android-sdk/21.1/android-sdk-linux/tools$ ./emulator
emulator: ERROR: You did not specify a virtual device name, and the system
directory could not be found.
If you are an Android SDK user, please use '@<name>' or '-avd <name>'
to start a given virtual device (see -help-avd for details).
Otherwise, follow the instructions in -help-disk-images to start the emulator当我运行./emulator -help-disk-images时,会得到包括以下内容的输出:
kernel-qemu the emulator-specific Linux kernel image
ramdisk.img the ramdisk image used to boot the system
system.img the *initial* system image
userdata.img the *initial* data partition image
It will also use the following writable image files:
userdata-qemu.img the persistent data partition image
system-qemu.img an *optional* persistent system image
cache.img an *optional* cache partition image
sdcard.img an *optional* SD Card partition image
snapshots.img an *optional* state snapshots image
If you're neither using the SDK or the Android build system, you
can still run the emulator by explicitely providing the paths to
*all* required disk images through a combination of the following
options: -sysdir, -datadir, -kernel, -ramdisk, -system, -data, -cache
-sdcard and -snapstorage.这很让人困惑。我见过YouTube示例中的人使用模拟器没有比./emulator -datadir=/some/path更多的东西。
所以我问:
./emulator -datadir=/some/path运行模拟器,但是第二个窗口中的输出似乎需要4-8命令行参数?提前感谢!
发布于 2013-04-13 21:40:41
您必须在启动模拟器:之前创建AVD配置
android create avd -n <name> -t <targetID> [-<option> <value>] ... http://developer.android.com/tools/devices/managing-avds-cmdline.html#AVDCmdLine
,那么你准备好启动它了,
emulator -avd <avd_name> [<options>]http://developer.android.com/tools/devices/emulator.html#starting
https://stackoverflow.com/questions/15992631
复制相似问题