
Use Netcat to shuttle TCP traffic from an external port to localhost:5555.Create a named pipe named /tmp/emupipe (Could be called anything):.See which port the emulator is listening on (Usually 5555): lsof -iTCP -sTCP:LISTEN -P | grep 'emulator\|qemu'.Kill the existing adb server: ~/Android/Sdk/platform-tools/adb kill-server.Use the AVD Manager to install and run an android emulator.On the Linux box, install Android Studio, including the Platform SDK tools.

In case you every find yourself in a similar situation, here’s one way to do it. Once upon a time I needed to connect to an Android emulator running on a Linux box from a Windows virtual machine.
