ADB - VirtualBox connection
adb, android, eclipse, virtualbox
Solution
I had the same issue once, did you check your VM network configuration? My VM network is configured like this: NAT with mode, deny, adapter as PCnet-FAST III and I add this rule to forward.
Always the most sneaky part is the network configuration of the VM, try with this one. If you still have issues check this tutorials: Speeding up Android development with Android-x86 and VirtualBox
Problem
I've trying to connect ADB and a VirtualBox Android device. I've followed all possible tutorial on the web but it's still not working. What i've done : - dl Adroidx86 from androidx86.org - intall it on VirtualBox - configure network with correct access mode (bridge) and card (PC-net Fast III) - type `netcfg` in the virtual machine terminal and get 192.168.1.12 for IP address (static) - type `adb kill-server` on the host machine - type `adb connect 192.168.1.12` on the host machine And get the error unable to connect to 192.168.1.12:5555. I'm running windows 7 as OS. Have you any idea why ?? How to know the port of the device to connect ? Thank you !