如何在已 root 的平板电脑上重新挂载 /system rw

发布于 2024-11-07 06:20:47 字数 372 浏览 3 评论 0原文

我正在尝试重新安装我的系统分区。我可以更改 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦罢 2024-11-14 06:20:47

正如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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文