[Q] SU Command from hook topic
Im trying to run a su command from within a hook,
But even though I grant the shell su access I still get error:
tmp-mksh: <stdin>[1]: can't create /system/sd/temporary.txt Read-only file system
Any ideas?
Code:
Process p;
try {
// Preform su to get root privledges
p = Runtime.getRuntime().exec("su");
// Attempt to write a file to a root-only
DataOutputStream os = new DataOutputStream(p.getOutputStream());
os.writeBytes("echo \"Do I have root?\" >/system/sd/temporary.txt\n");
// Close the terminal
os.writeBytes("exit\n");
os.flush();
try {
p.waitFor();
if (p.exitValue() != 255) {
toastMessage("root");
return true;
} else {
toastMessage("not root");
}
} catch (InterruptedException e) {
toastMessage("not root");
}
} catch (IOException e) {
toastMessage("not root");
}
But even though I grant the shell su access I still get error:
tmp-mksh: <stdin>[1]: can't create /system/sd/temporary.txt Read-only file system
Any ideas?
xda-developers
- [Q] Downgrade from lollipop to kitkat topic
- [Q] How to hook the step counter sensor? topic
- [Q] SU Command from hook topic
- [Q] call startService from hook method topic
- [Q] Hook and run outside topic
- Is root required to roll back to KitKat? topic
- [REQ] Multi DPI Stock Camera topic
- May be this is it for Xperia J topic
- [Q] No IMEI and baseband anymore. So back to stock rom for repair! topic
- Htc desire 816 official lollipop update video review topic
- [Q] Galaxy S6 Edge T-Mobile Unlock by SIM code topic
- How to roll back to KK topic
- What is this in Greenify settings topic
- [Q] How to update? topic
- [Q] New to phone - on 24A rooted - where to go from here? topic
- I9505 Safe to Downgrade from 4.4.2 to 4.2.2? topic
- Remove Att logo from the rear of the phone topic
- [Q] Going from Stock Unrooted to CM12.1 topic
- Downgrade from 5.1.x to stock topic
- Anyone come from a Note 4? topic
0 commentaires:
Enregistrer un commentaire