如何通过命令行关闭Android模拟器

时间:2011-05-06 13:50:46

标签: android ubuntu emulation avd qemu

我无法正常地从命令提示符停止模拟器。

我使用的是Linux Ubuntu 10.04版本(64位),Android SDK版本是2.3。

我使用快照启动了模拟器。现在我关心的是优雅地关闭正在运行的Emulator实例。我已经尝试使用kill -9(模拟器运行的进程ID)关闭模拟器,但下次它没有启动,因为它的快照已损坏。请帮我避免强行关闭模拟器。

知道怎么解决吗?

3 个答案:

答案 0 :(得分:51)

请不要随意使用kill -9,这是一个非常坏的习惯。

正确的命令是

 $ adb emu kill

或者我应该更好地说明是正确的命令,直到最近的adb更改。似乎有人忘了添加身份验证。

最新(截至2016年6月)最新adb版本为

$ adb version
Android Debug Bridge version 1.0.36
Revision 0a04cdc4a62f-android

当你尝试

$ adb emu kill

没有任何反应,这就是为什么

...
connect(3, {sa_family=AF_INET, sin_port=htons(5554), 
sin_addr=inet_addr("127.0.0.1")}, 16) = 0
write(3, "kill\nquit\n", 10)            = 10
read(3, "\377\373\1", 8192)             = 3
read(3, "\377\373\3\377\373\0\377\375\0", 8192) = 9
read(3, "Android Console: Authentication required\r\nAndroid Console: type 'auth <auth_token>' to authenticate\r\nAndroid Console: you can find your <auth_token> in \r\n'/home/diego/.emulator_console_auth_token'\r\nOK\r\n", 8192) = 202
read(3, "k\33[K", 8192)                 = 4
read(3, "\33[Dki\33[K", 8192)           = 8
read(3, "\33[D\33[Dkil\33[K\33[D\33[D\33[Dkill\33[K", 8192) = 28
read(3, "\r\nKO: unknown command, try 'help'\r\n", 8192) = 35
read(3, "q\33[K\33[Dqu\33[K", 8192)     = 12
read(3, "\33[D\33[Dqui\33[K\33[D\33[D\33[Dquit\33[K", 8192) = 28
read(3, "\r\n", 8192)                   = 2
read(3, "", 8192)                       = 0
close(3)                                = 0
exit_group(0)                           = ?
+++ exited with 0 +++

然后我们需要另一种解决方案。

如果上一个命令不起作用(如某些用户报告的Windows),您可以尝试(在下一个命令5554中是模拟器使用的端口)。

将令牌文件(~/.emulator_console_auth_token)的内容复制到剪贴板,以便在telnet会话期间将其粘贴:

$ telnet localhost 5554

Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
Android Console: Authentication required
Android Console: type 'auth <auth_token>' to authenticate
Android Console: you can find your <auth_token> in 
'/home/user/.emulator_console_auth_token'
OK
auth <YOUR_TOKEN_HERE>
Android Console: type 'help' for a list of commands
OK
Android console command help:

    help|h|?         print a list of commands
    crash            crash the emulator instance
    kill             kill the emulator instance
    quit|exit        quit control session
    redir            manage port redirections
    power            power related commands
    event            simulate hardware events
    avd              control virtual device execution
    finger           manage emulator fingerprint
    geo              Geo-location commands
    sms              SMS related commands
    cdma             CDMA related commands
    gsm              GSM related commands
    rotate           rotate the screen by 90 degrees

try 'help <command>' for command-specific help
OK

然后,您只需在命令提示符下输入kill

kill
OK: killing emulator, bye bye
Connection closed by foreign host.

并且模拟器将退出。

但等等,应该有更好的方法。事实上还有!

gist使用expect提供自动解决方案,而不是每次都必须剪切和通过身份验证令牌。

希望你觉得它很有用。

答案 1 :(得分:0)

在Ubuntu 16-04上,使用ADB版本1.0.32,我在Docker容器中运行Android 4.4(API 19)的模拟器。暴露的端口为控制台30004和ADB 30005。

我可以通过adb connect 0.0.0.0:30005连接到它。

要杀死模拟器,我必须使用adb -s emulator-30004 emu kill,使用0.0.0.0:30005给我error: no emulator detected

答案 2 :(得分:0)

我在ubuntu中遇到问题,模拟器会不断打开新进程。我永远无法关闭模拟器而且没有响应。

我使用了htop

htop中的步骤:

  1. F4过滤。
  2. 过滤&#39; avd&#39;。
  3. F5 for tree。
  4. 查找并单击父进程。
  5. F9提高杀戮菜单。
  6. 选择信号9并输入。
相关问题