Install apk to /system/app

1.Push APK to SD card.
$ adb push 1.apk /sdcard/  
2.Enter the console and get the shell
$ adb shell
3.Switch to superuser. If your device is not rooted, get it rooted first. (If you don't know how to do that, just Google.)
$ su 
4.Remount the system partition with WRITE permission.
$ mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system 
5.Cat your APK from /sdcard/ to /system/ , some guys get a fail with cp command due to cp is not supported. So use cat instead.
$ cat /sdcard/1.apk > /system/app/1.apk 
6.Remout /system partition back to READ-ONLY, and exit
$ mount -o remount,ro -t yaffs2 /dev/block/mtdblock3 /system
$ exit
7.Then reboot your device, the APK should have been installed on /system/app.
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章