Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Whatever I type after "adb shell" it fails with Permission denied:

D:\android-sdk-windows\platform-tools>adb shell find /data -name *.db
find: permission denied

D:\android-sdk-windows\platform-tools>adb shell test
test: permission denied

D:\android-sdk-windows\platform-tools>adb remount
remount failed: No such file or directory

Kill you works though :)

D:\android-sdk-windows\platform-tools>adb shell kill you
D:\android-sdk-windows\platform-tools>

Any ideas?

share|improve this question
Where are you trying to run the adb shell, in emulator or target device; if on target device you cant access the /data folder until unless you have root permission. – Vamsi Sep 13 '11 at 8:56
after adb root >> adbd cannot run as root in production builds what to do? – d.popov Nov 14 '12 at 23:24
I guess you need a rooted phone to be able to run that – Caner Nov 15 '12 at 9:00
yes, I know. But, as you see currently I do not have the reputation to comment the Author's post, but i had this problem, so the only way was to add new post, or to open duplicate thread, so I decided to add a post. – d.popov Jan 2 at 10:19
the phone is was rooted, but something went wrong with the OS. It was freezing after loading the home screen on reboot. Anyway - nandroid flashing the phone with the stock ROM solved the problem. – d.popov Jan 2 at 10:23

6 Answers

According to adb help:

adb root                     - restarts the adbd daemon with root permissions

Which indeed resolved the issue for me.

share|improve this answer
up vote 1 down vote accepted

One of the following(not sure which) solved it: Rebooting phone/computer/reinstalling phone driver

share|improve this answer

The reason for "permission denied" is because your Android machine has not been correctly rooted. Did you see $ after you started adb shell? If you correctly rooted your machine, you would have seen # instead.

If you see the $, try entering Super User mode by typing su. If Root is enabled, you will see the # - without asking for password.

share|improve this answer

Do adb remount. And then try adb shell

share|improve this answer
adb remount gives: remount failed: No such file or directory – Caner Sep 13 '11 at 8:54

change your directory to /android-sdk-linux/platform-tools then run this command : chmod +x adb

share|improve this answer

You might need to activate adb root from the developer settings menu. If you run adb root from the cmd line you can get:

root access is disabled by system setting - enable in settings -> development options

Once you activate the root option (ADB only or Apps and ADB) adb will restart and you will be able to use root from the cmd line.

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.