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.

I was trying to find out the solution about how to execute shell script with full permission, but was unable to get the answer. here was the question

So, As an alternative I wrote mkdir. cp, mount command logic in C, and compile a binary. that works fine if i execute that binary from the console. But when i execute that binary from ndk code or Android code. It cant create and directory or copy any file. Even I merged my all C source with Android using ndk still it is not able to do such task. I cross-verified it with all possibilities listed below:

  • Changed the permission of the binary a.out
  • Changed the console permission in init.rc file
  • Tried to call the binary from ndk layer as well as android layer
  • Tried with "su -c " command
  • merged all C code to Android app and tried to run

Please help..

P.S.

  • One more Interesting thing is, if I use system command in C like system ("mkdir -p /test1/test3/") or system ("cp file1 /system/"), It is not able to do so from both application as well as by executing the binary from console.
  • Also, when i execute the binary or script it works fine just commands like mount, mkdir, cp are not working. I can see all echos from the script and printfs from the C compiled binary.
share|improve this question
Would you add the C code where you invoke the external processes? – Samveen Jun 19 '12 at 17:21

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.