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.

so, i'm trying to push some files to /system on android device (zte) I've rooted, connected with ADB,

adb remount -> I get permission denied adb shell su -> I'm able to access shell and create folders etc and edit filesystem

(but in shell I can't copy a file from my computer to device)

Any help please

share|improve this question
4  
Have you tried adb root, then adb remount ? – Michael Oct 26 '12 at 15:20
1  
running adb root getting -> adbd can't run as root in production builds – IanO.S. Oct 26 '12 at 15:33
1  
it's your boot.img - the default.prop or kernel must not be set up for adb remount permissions. Are you trying to push to /system somewhere? Then just run adb shell mount -o rw,remount /system to mount system as r/w – Drake Clarris Oct 26 '12 at 15:50
adb shell mount -o rw,remount /system , is giving me a 'not permitted' error, when I goto into adb shell and do SU , I can run "shell mount -o rw,remount /system" but afterwords trying to adb push to system I still get permission denied @DrakeClarris – IanO.S. Oct 26 '12 at 16:48
then your boot.img or kernel needs to be changed to allow it. Are you stock and rooted? If so, try a custom rom. If you're on a custom rom, try another. Or look up how to mod a boot.img to change the ro.secure parameter - here's a guide I found on a quick google search: roguedroid.blogspot.com/2012/01/modding-bootimg.html (edit: don't use the dd command in the opening paragraph - you'll need to find what partition your device uses for that command) – Drake Clarris Oct 29 '12 at 13:03
show 1 more comment

1 Answer

up vote 11 down vote accepted

In case anyone has the same problem in the future:

$ adb shell
$ su
# mount -o rw,remount /system

Both adb remount and adb root don't work on a production build without altering ro.secure, but you can still remount /system by opening a shell, asking for root permissions and typing the mount command.

share|improve this answer
great thanks that works well – IanO.S. Nov 19 '12 at 1:28
Doesn't work for me: I get "permission denied". – Michael Mar 26 at 14:35
@Michael at which step are you getting the error? Is your phone rooted? What root app are you using (SuperSU, Superuser, ...)? – MartinodF Mar 26 at 14:49
Step two, when I try to run "su" from the adb shell. Phone is rooted. I am using the Superuser app. Is there something I need to do to tell Superuser to allow adb root access? – Michael Mar 26 at 14:51
Not that I know of! When you run "su" you should get a Superuser popup on the phone asking if you want to authorize it. Are you sure that Superuser is working fine and that it's not configured to block adb root? – MartinodF Mar 26 at 14:59
show 3 more comments

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.