ADB connect on Tegra Note

Syol

Member
Jul 23, 2014
20
2
0
Hey guys,

I'm trying to use ADB Konnect (connect your tablet via adb over wifi) on my Tegra Note. But unfortunatelly when I try to connect on my computer it says: Unable to connect to XXX

It's working on al the other Android devices I've test. Did you heard about this issue on Tegra Note?

Anyone manage to connect to his tegra note via adb connect?

Thanks!
 

Ysy

Member
Jul 25, 2010
20
1
0
It should work - and it does.

18 months later it seemed my turn to face this very same issue. My nVidia Tegra Note 7 (Android 5.1) failed to "adb connect" on WiFi from my Windows computer (Windows 10.0.10586 Pro x64) – which in the first place connected successfully *on USB* :
Code:
[B]adb devices[/B] }}::: (on USB)
List of devices attached
0521014101305001AA33    device
Windows could also ping the device :::
Code:
[B]ping [/B]192.168.1.211
[SIZE="1"]
[/SIZE]Pinging 192.168.1.211 with 32 bytes of data:
Reply from 192.168.1.211: bytes=32 time=105ms TTL=64
Reply from 192.168.1.211: bytes=32 time=5ms TTL=64
Reply from 192.168.1.211: bytes=32 time=4ms TTL=64
Reply from 192.168.1.211: bytes=32 time=3ms TTL=64
[SIZE="2"]
[/SIZE]Ping statistics for 192.168.1.211:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
    Minimum = 3ms, Maximum = 105ms, Average = 29ms
Fortunately as I went through the following scenario, it ultimately led to successful connection on WiFi :::
Code:
>[B]adb connect 192.168.1.211[/B]
unable to connect to 192.168.1.211:5555

>[B]adb devices[/B]
List of devices attached
0521014101305001AA33    device  « « «  USB.

>[B]adb tcpip 5555[/B]
restarting in TCP mode port: 5555

>[B]adb devices[/B]
List of devices attached
0521014101305001AA33    device  « « «  Still on USB.

>[B]adb devices[/B]
List of devices attached
					« « « « «  USB disconnected.

>[B]adb connect 192.168.1.211[/B]
connected to 192.168.1.211:5555

>[B]adb devices[/B]
List of devices attached
192.168.1.211:5555      device

>[B]adb shell[/B]
[email protected]:/ $ [B]ls[/B]
acct
cache
charger
config
< etc. >
 
Last edited: