Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using a Samsung galaxy nexus phone (Android 4.0 platform) .

I am developing Android app on Ubuntu linux OS. I would like to run my application directly on the Samsung handset device, so I did the following setup steps:

  1. in my project AndroidManifest.xml file, add android:debuggable="true" to the <application> element

  2. On device, Settings > Security enable Unknown sources

  3. On device, Settings > Developer options enable USB debugging

  4. On my computer, create file /etc/udev/rules.d/51-android.rules , the content of the file is:

    SUBSYSTEM=="usb", ATTR{idVendor}=="04E8", MODE="0666", GROUP="plugdev"

  5. On my computer, run command chmod a+r /etc/udev/rules.d/51-android.rules

Then, I open a terminal and execute command adb devices on my computer , I got:

List of devices attached 
????????????    no permissions

Since I did not see my device but only "??????? no permissions", I then run the following commands:

 adb kill-server
 adb start-server
 adb devices

But I still get:

List of devices attached 
 ????????????   no permissions

Why? What am I missing??

share|improve this question
after exectuing adb kill-server did u get the message that * daemon not running. starting it now on port 5037 * * daemon started successfully * --- if not try it till u get this msg – Andro Selva Feb 9 '12 at 11:44
Try to check that your user is in plugdev group. – Sergey Glotov Feb 9 '12 at 11:58

8 Answers

up vote 34 down vote accepted

What works for me is do all the adb kill and start as a root. Then it will detect nearly every device out of the box.

share|improve this answer
I use root to execute command "adb devices" under <android-SDK>/platform-tool/ , I got "No command 'adb' found", why? – Leem.fin Feb 9 '12 at 12:11
could you paste the exact command you use? I use sudo /opt/android/platform-tools/adb devices – WarrenFaith Feb 9 '12 at 12:20
I use the same syntax command. "sudo /PATH_TO_ANDROID_SDK/platform-tolls/adb devices" It does not help – Leem.fin Feb 9 '12 at 12:26
1  
make sure that your adb got +x -rwxrwxr-x 1 martin martin 156K 2011-11-09 15:40 adb. Try to move to the directory directly and start via "sudo ./adb devices". If you can run that without sudo, you should be able to run it with sudo... I am not sure what your issue might be... – WarrenFaith Feb 10 '12 at 9:45
You are my hero of the day. Thanks. – yevgeniy mordovkin Nov 8 '12 at 5:44
show 2 more comments

Nothing worked for me until I finally found the answer here: http://ptspts.blogspot.co.il/2011/10/how-to-fix-adb-no-permissions-error-on.html

I'm copying the text here in case it disappears in the future.

Create a file named /tmp/android.rules with the following contents (hex vendor numbers were taken from the vendor list page):

SUBSYSTEM=="usb", ATTRS{idVendor}=="0bb4", MODE="0666"
SUBSYSTEM=="usb", ATTRS{idVendor}=="0e79", MODE="0666"
SUBSYSTEM=="usb", ATTRS{idVendor}=="0502", MODE="0666"
SUBSYSTEM=="usb", ATTRS{idVendor}=="0b05", MODE="0666"
SUBSYSTEM=="usb", ATTRS{idVendor}=="413c", MODE="0666"
SUBSYSTEM=="usb", ATTRS{idVendor}=="0489", MODE="0666"
SUBSYSTEM=="usb", ATTRS{idVendor}=="091e", MODE="0666"
SUBSYSTEM=="usb", ATTRS{idVendor}=="18d1", MODE="0666"
SUBSYSTEM=="usb", ATTRS{idVendor}=="0bb4", MODE="0666"
SUBSYSTEM=="usb", ATTRS{idVendor}=="12d1", MODE="0666"
SUBSYSTEM=="usb", ATTRS{idVendor}=="24e3", MODE="0666"
SUBSYSTEM=="usb", ATTRS{idVendor}=="2116", MODE="0666"
SUBSYSTEM=="usb", ATTRS{idVendor}=="0482", MODE="0666"
SUBSYSTEM=="usb", ATTRS{idVendor}=="17ef", MODE="0666"
SUBSYSTEM=="usb", ATTRS{idVendor}=="1004", MODE="0666"
SUBSYSTEM=="usb", ATTRS{idVendor}=="22b8", MODE="0666"
SUBSYSTEM=="usb", ATTRS{idVendor}=="0409", MODE="0666"
SUBSYSTEM=="usb", ATTRS{idVendor}=="2080", MODE="0666"
SUBSYSTEM=="usb", ATTRS{idVendor}=="0955", MODE="0666"
SUBSYSTEM=="usb", ATTRS{idVendor}=="2257", MODE="0666"
SUBSYSTEM=="usb", ATTRS{idVendor}=="10a9", MODE="0666"
SUBSYSTEM=="usb", ATTRS{idVendor}=="1d4d", MODE="0666"
SUBSYSTEM=="usb", ATTRS{idVendor}=="0471", MODE="0666"
SUBSYSTEM=="usb", ATTRS{idVendor}=="04da", MODE="0666"
SUBSYSTEM=="usb", ATTRS{idVendor}=="05c6", MODE="0666"
SUBSYSTEM=="usb", ATTRS{idVendor}=="1f53", MODE="0666"
SUBSYSTEM=="usb", ATTRS{idVendor}=="04e8", MODE="0666"
SUBSYSTEM=="usb", ATTRS{idVendor}=="04dd", MODE="0666"
SUBSYSTEM=="usb", ATTRS{idVendor}=="0fce", MODE="0666"
SUBSYSTEM=="usb", ATTRS{idVendor}=="0930", MODE="0666"
SUBSYSTEM=="usb", ATTRS{idVendor}=="19d2", MODE="0666"

Run the following commands:

sudo cp /tmp/android.rules /etc/udev/rules.d/51-android.rules
sudo chmod 644   /etc/udev/rules.d/51-android.rules
sudo chown root. /etc/udev/rules.d/51-android.rules
sudo service udev restart
sudo killall adb

Disconnect the USB cable between the phone and the computer.

Reconnect the phone.

Run adb devices to confirm that now it has permission to access the phone.

Please note that it's possible to use , USER="$LOGINNAME" instead of , MODE="0666" in the .rules file, substituting $LOGINNAME for your login name, i.e. what id -nu prints.

In some cases it can be necessary to give the udev rules file a name that sorts close to the end, such as z51-android.rules.

share|improve this answer
1  
This worked! Thank you! – J.Romero Nov 9 '12 at 13:52
3  
Note: for Ubuntu Precise the filename is 70-android.rules as per this post: esausilva.com/2010/05/13/…. Also kudos for letting us know you have to restart udev and kill all adb processes. Worked like a charm! – Eduard Luca Jan 4 at 10:01
This worked for me, while running adb as root didn't. – myanimal Jan 21 at 8:58
Thanks this worked!! – srinik Jan 28 at 15:47
Thanks, this worked for me. Running adb as root did not. – Eric S. Bullington Apr 1 at 17:31

Enter the following commands:

adb kill-server sudo ./adb start-server adb devices

The issue is your not running adb server as root.

share|improve this answer

When you restart udev, kill adb server & start adb server goto android sdk installation path & do all on sudo. then run adb devices it will solve permission problem.

share|improve this answer

I had the same problem, the solution is as fellow: (by the way, you don't have to root your device.)

  1. Type "su" to switch to super user.
  2. your-path/adb kill-server.
  3. your-path/adb start-server.
  4. If no error occurs, you can see the device list with "your-path/adb devices" in root account.
  5. Quit super user.
  6. Now you can perform "adb devices" in your account.

Enjoy.

share|improve this answer
In case you can't manage to login using su, use sudo su. I did. And also, if you don't know how to quit the user - use exit. – Pius Feb 14 at 9:05

I have got the Galaxy s2, I assume you run it from eclipse? it didn't found mine until I restarted eclipse.

However, found this on the internet:

http://forum.xda-developers.com/showthread.php?t=640158

Seems alot like your problem, and on that thread it is solved.

share|improve this answer

Try instead of GROUP="plugdev" use the main group of your user.

share|improve this answer
I am using my username, it does not help – Leem.fin Feb 9 '12 at 12:09

I had to make sure the android sdk directory was owned by the same user as the person running eclipse. Specifically the dx.jar file....

sudo chown -R me.me android-sdk-linux_x86

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.