如何在已 root 的平板电脑上重新挂载 /system rw
我正在尝试重新安装我的系统分区。我可以更改 system.img 和 boot.img 中的任何文件。但我无法将分区安装为 rw!我扎根了。
#adb remount
remount succeeded
但
与
su; mount -o rw,remount...
我设置的没有任何变化: default.prop 中的 ro.secure=0
init.rc 中的 mountcramfs mtd@system /system rw
但没有任何变化!它仍然安装为 ro!我该怎么做才能让 /system 挂载 rw?
I am trying to remount my system partition. I can change any file in system.img and boot.img. But I can't get partitions mounted as rw! I am rooted.
#adb remount
remount succeeded
but nothing changes
the same with
su; mount -o rw,remount...
I set:ro.secure=0
in default.prop
mount cramfs mtd@system /system rw
in init.rc
But nothing changes! It is still mounted as ro! What have I do to have /system mounted rw?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如
mount
告诉你的那样,它是rw挂载的,但是cramfs代表压缩ROM文件系统,这是一个文件系统故意只读以简化其实现,因此即使它已安装rw,您也无法更改它。It's mounted rw, as
mount
tells you, but cramfs stands for compressed ROM file system, a filesystem that is intentionally read-only to simplify its implementation, so even if it's mounted rw you cannot change it.