You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using ADB shell command to write directly to location gives error even after overlayFS is installed:
mv: /vendor/etc/camera/camxoverridesettings.txt: Read-only file system
I found this answer suggesting need to write to location where overlayFS is mounted instead /tmp/overlay/, but on android this path is not existing, what's the path where overlayFS is mounted so i can use command line to move files to read only partitions?
The text was updated successfully, but these errors were encountered:
I found command mount in android terminal shows list of all mounts, got to figure out which mount corresponds to what partition though because too many.
You can run
adb shell
su
mount
one of the records
overlay on /vendor/etc type overlay (ro,seclabel,relatime,lowerdir=/vendor,upperdir=/dev/mount_overlayfs/upper/vendor,workdir=/dev/mount_overlayfs/worker/64521/2)
Using ADB shell command to write directly to location gives error even after overlayFS is installed:
mv: /vendor/etc/camera/camxoverridesettings.txt: Read-only file system
I found this answer suggesting need to write to location where overlayFS is mounted instead
/tmp/overlay/
, but on android this path is not existing, what's the path where overlayFS is mounted so i can use command line to move files to read only partitions?The text was updated successfully, but these errors were encountered: