Jaya Mayu
Jaya Mayu

Reputation: 17247

adb shell: telnet command doesn't work

i want to learn how to mock up location in android device and develop a location based app. My problem is when I say adb shell in the command prompt it lets me go into the emulator with # symbol.

problem starts here

When I enter telnet localhost 5554 to telnet the device it says telnet: not found

what could be the problem?? am I doing something wrong?

Upvotes: 2

Views: 8427

Answers (2)

Diego Torres Milano
Diego Torres Milano

Reputation: 69228

You don't have telnet installed.

In ubuntu install it by:

$ sudo apt-get install telnet

Upvotes: 0

Blitz
Blitz

Reputation: 5671

you don't have to telnet with adb. Just use a normal command line window to type in telnet localhost 5554 - but don't enter adb before!

Upvotes: 1

Related Questions