Nathan
Nathan

Reputation: 78439

Adb hanging on 64 bit linux os

I'm trying to use adb on 64 bit linux (Linux Mint 15), and it's simply not working. I installed all the 32 bit libraries other questions of this sort were recommending, but to no avail. Most of the other questions like this seemed to say that adb was giving an error message, but in this case it simply hangs for a long time whenever I give a command. It eventually works, but hangs for quite a while, and I havn't been able to get it to work with eclipse. Does anyone know how I can get it to work smoothly?

Upvotes: 0

Views: 191

Answers (1)

Nathan
Nathan

Reputation: 78439

I found the solution. My iptables were dropping local loopback network activity, and I changed that with sudo iptables -I INPUT -i lo -j ACCEPT

Afterwards, adb worked for me.

Upvotes: 1

Related Questions