优选主流主机商
任何主机均需规范使用

Android 重新挂载分区mount remount

一般在终端下操作Android系统,我们访问系统分区的时候,经常遇到Only Read的问题,此时需要以读写方式重新挂载需要操作的分区。

1、重新挂载根分区 mount -o remount /

2、以读写的模式重新挂载 根分区 mount -o remount, rw /

3、以不含suid的模式重新挂载根分区 mount -o remount, nosuid /

4、重新挂载system分区,这个也是我个人在开发的时候用得最多的,因为我经常需要读写system/app/目录下系统自带的apk安装包。mount -o remount, system/

未经允许不得转载:搬瓦工中文网 » Android 重新挂载分区mount remount