Eliminar Aplicaciones de System Android

You might also like

You are on page 1of 1

Eliminar aplicaciones de system que no se pueden remover:

http://stackoverflow.com/questions/33890752/rm-failed-operation-not-permitted-on
-rooted-android
http://forum.xda-developers.com/general/help/delete-malware-app-root-permissiont3221941
http://stackoverflow.com/questions/6066030/read-only-file-system-on-android
comandos usados:
root@mr900:/data/app # chattr -AacdDijsStu *.apk
root@mr900:/data/app # rm com.hola.launcher-1.apk
root@mr900:/data/app # ls -l com.hola.launcher-1.apk
------------------------------------------Permiso de escritura/lectura:
# mount -o rw,remount /system
Despues regresarlo:
# mount -o ro,remount /system
-------------------------------------You need busybox installed.
Try this commands:
chattr -AacdDijsStu *.apk
rm "your package name"
This time it will get removed without error
--------------------------------------------

You might also like