`

adnroid 4.0.3去掉虚拟导航栏

 
阅读更多
http://blog.csdn.net/wfh1988/article/details/6408837

最近刷了T-Mobile的系统之后,我的G2执行adb remount的时候失败了,提示

remount failed: Operation not permitted

在XDA上面找到了解决的方法:

1. 确定是否正确连接手机了

adb devices
2. 进入shell

adb shell
3. shell中输入命令(命令最前面的#号不用输入)

# su

# mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system

# chmod 777 /system

# exit
4. 然后你就有系统目录的读写权限了,例如你就可以使用adb push 把文件push到系统目录中去了,或者删除系统文件。

原文:http://forum.xda-developers.com/showthread.php?t=685146



//======================================================
sh-3.2#  mv /system/app/SystemUI.apk /system/app/SystemUI.apkold

//====================================================


//去掉导航栏

1. 确定是否正确连接手机了

adb devices
2. 进入shell

adb shell
3. shell中输入命令(命令最前面的#号不用输入)

# su

# mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system

# chmod 777 /system

mv   /system/app/SystemUI.apk  /system/app/SystemUI.apkold


# exit

adb reboot


//恢复导航栏
1. 确定是否正确连接手机了

adb devices
2. 进入shell

adb shell
3. shell中输入命令(命令最前面的#号不用输入)

# su

# mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system

# chmod 777 /system

mv  /system/app/SystemUI.apkold /system/app/SystemUI.apk 


# exit

adb reboot



分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics