12

well it might not the best combo. Using first time Ubuntu (13.04) and the new Android Studio. ;) However, if I try to start my app a error occurs with the message: "ADB not responding. You can wait more, or kill "adb" process manually and click 'Restart'". Of course tried the help from the message and restartet everything. Nothing help.

And yes I can start ADB directly and start a emu. Even the emu is started the error appear.

staxx6
  • 117
  • 1
  • 2
  • 9

3 Answers3

12

You may require additional libraries:

# sudo apt-get install ia32-libs

From the page on Troubleshooting Ubuntu

Njall
  • 191
  • 1
  • 7
11

On my machine I had to install lib32ncurses5 in order to have adb shipped with android studio to work

sudo apt-get install lib32ncurses5

feder
  • 119
  • 2
  • I'm running 64-bit Ubuntu, this solution should not apply to me, correct? When I run the command the terminal says, already at the newest version and problem still persists. – OKGimmeMoney Dec 24 '14 at 09:16
3

go to /android-studio/sdk/platform-tools directory and change adb file permission.( Allow executing file as program )

Farnabaz
  • 4,030
  • 1
  • 22
  • 42
Nasir
  • 515
  • 5
  • 17