score:0

another issue might be adb's file permissions themselves, make sure the user you are using to run eclipse is the same as who owns the adb files. also make sure that adb is actually executable. (these are both unlikely issues, but worth checking if the other solutions given don't fix it)

from the home directory, try 'adb' in terminal:

if 'adb' doesn't find the adb tool, then your path needs adjusted. (edit .bashrc with bash commands to append to the path the /tools directory of the android sdk, is probably the easiest way, then log out and back in to apply the settings)

if 'adb' says it needs root permission, then try 'sudo adb' and see if that works. (this shouldn't happen, but worth testing)

i'm not actually sure what it says for 'non executable' in 13.04, but it should be self explanatory.

score:0

i have solved this problem through following steps:

1. copy & unzip eclipse to /opt/android/android-sdk-linux/
2. x86= sudo apt-get install libgl1-mesa-dev
x64(ubuntu 13.04 and earlier)= sudo apt-get install ia32-libs
x64(ubuntu 13.10 and above)=   sudo apt-get install libgl1-mesa-dev:i386
i use ubuntu 14 and on this version listed packages have multiple dependencies, so if you could not install this package use apt-get -f install  (without package) . this statement install dependencies. 

3. sudo gedit /etc/environment
:/opt/android/android-sdk-linux/tools
:/opt/android/android-sdk-linux/platform-tools

score:0

the same happened for me when i used adb version it showed adb server not installed ,and it showed how to fix it ,and now works fine ,install the adb server using the following code .

the program 'adb' is currently not installed. you can install it by    typing:

sudo apt-get install android-tools-adb

score:1

@manoj,

try running following

  • cd /home/manoj/....../platform-tools
  • adb version

if you get a permission denied error then

  • chmod 770 adb
  • adb version

you should get a response like "android debug bridge version x.x.xx"

if so the source of your problem was file permission and set the file permission appropriately

also check if the $path includes the path to /home/manoj/....../platform-tools.

disclaimer: i use ubuntu 12.04 and adb at command prompt for my work. i hardly use eclipse for my current work.

let us know your results

good luck


Related Query

More Query from same tag