我最近安装了我的Droid X,一切似乎都很完美。我做了一些改变来构建。prop,当我做adb push build时。prop /system/我得到以下错误:未能复制'c:\build。支持“到”/system//build。prop':只读文件系统。

我该如何解决这个问题?


当前回答

我只需要这个:

su -c "mount -o rw,remount /system"

其他回答

mount -o rw,remount /dev/stl12 /system

对我有用

同样,必须提取并重新打包initrc。使用mount /system的代码编辑init文件

并不是所有的手机和安卓版本都安装了相同的东西。 重新安装时限制选项是最好的。

简单地重新挂载为rw(读/写):

# mount -o rw,remount /system

一旦你完成了修改,重新挂载到ro(只读):

# mount -o ro,remount /system

我认为最安全的方法是将/system重新挂载为可读写,使用:

mount -o remount,rw /system

完成后,将其重新挂载为只读:

mount -o remount,ro /system

我用模拟器检查,下面工作。

亚洲开发银行重启 adb root && adb remount && adb push ~/Desktop/hosts /system/etc/hosts

如上所述,在单镜头中执行第二步。