Android终端--telnet缺少命令,收到此错误:KO:未知命令,尝试“帮助”
Posted
技术标签:
【中文标题】Android终端--telnet缺少命令,收到此错误:KO:未知命令,尝试“帮助”【英文标题】:Android terminal--telnet missing commands, receiving this error : KO: unknown command, try 'help' 【发布时间】:2017-04-03 16:48:25 【问题描述】:我正在尝试在模拟设备上设置坐标。
XXXX-MacBook-XXXXX XXXX$ telnet localhost 5554
Trying ::1...
telnet: connect to address ::1: Connection refused
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
'/Users/XXXXX/.emulator_console_auth_token'
OK
问题是……
geo fix 77.9888 34.0000
KO: unknown command, try 'help'
我好像没有地理命令
help
Android console command help:
help|h|? print a list of commands
auth use 'auth <auth_token>' to get extended functionality
avd control virtual device execution
quit|exit quit control session
try 'help <command>' for command-specific help
OK
事实上,我的大部分命令似乎都丢失了。
有人知道为什么缺少这些命令吗?
【问题讨论】:
【参考方案1】:您未通过身份验证。
获取/Users/XXXXX/.emulator_console_auth_token
的内容并在OK提示符后进入
auth <auth_token>
【讨论】:
此答案中的路径对 OS X 用户有效。对于更通用的 *nix 操作系统(如 Linux 和 OS X),请使用~/.emulator_console_auth_token
。【参考方案2】:
对于像我这样的业余爱好者来说,diego-torres-milano 意味着什么:
cat /Users/XXXXX/.emulator_console_auth_token
<copy the above contents - auth_token>
telnet localhost <portnumber> (mostly 5554)
auth auth_token
【讨论】:
以上是关于Android终端--telnet缺少命令,收到此错误:KO:未知命令,尝试“帮助”的主要内容,如果未能解决你的问题,请参考以下文章