android 操作系统文件报错 Read-only file system

操作设备文件系统上的文件结果遇到 cp: /system/etc/set_eth0.sh: Read-only file system
解决办法:

1. 最简单的,adb remount

2. 不行的话,adb shell su之后将文件系统remount为读写权限: mount -o remount rw /system。出于安全考虑,记得完事后remount回只读: mount -o ro,remount /system

3. 和方法2类似,mount -o rw,remount -t ext3 /dev/block/mmcblk1p21 /system

你可能感兴趣的:(android)