已经root的手机adb shell 后,仍提示Read-only file system,需要重新挂载系统
mount -o remount,rw /system
这里的 /system 也可以是其它你想操作的目录。
另外一个需要注意的事情是,在你对文件操作完毕之后,务必要把被操作分区的读写权限修改回只读。命令如下:
mount -o remount,ro /system
已经root的手机adb shell 后,仍提示Read-only file system,需要重新挂载系统
mount -o remount,rw /system
这里的 /system 也可以是其它你想操作的目录。
另外一个需要注意的事情是,在你对文件操作完毕之后,务必要把被操作分区的读写权限修改回只读。命令如下:
mount -o remount,ro /system