I am facing this strange problem in my android ,

When I try to run a executable by using :

su -c "/path/to/executable"

I get this error:

[1]   Segmentation fault /path/to/executable

however, when i run same code after reaching the specific directory and then changing user to root and then running command :

./executable 

Everything works just fine.

Cant find any problem in the code.

This was working just fine a few days ago, I did change the executable.

Note that executable is made by compiling C-Code.

Any help on whats going wrong?

link|improve this question

43% accept rate
feedback

2 Answers

Run

 strace su -c /path/to/executable

to identify the problem.

link|improve this answer
command strace is not there in android! :( – d34th4ck3r Jul 6 '11 at 19:13
it's on the emulator – dtmilano Jul 6 '11 at 19:38
Thanx, this helped ! The basic problem was, I had made a new file(In the code) in the same directory ie /data/local and I was trying to write it but strace told me its having read only permission , Which I later created in /sdcard/. This solved the problem – d34th4ck3r Jul 6 '11 at 20:37
It's always useful to have strace in your toolbox to detect these problems. If the answer helped you please accept it. – dtmilano Jul 7 '11 at 14:29
feedback

Perhaps the program depends on a file in current working directory? Have you tried:

su -c "cd /directory; sh programfile"
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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