How to mount image file without root?
1
vote
0
answers
684
views
In rooted android phone, ext4 image file is mounted using these commands in android terminal :
# mknod /dev/block/loop52 b 7 0
# losetup /dev/block/loop52 /sdcard/ext1.img
# mkdir /mnt/ext
# mount -t ext4 -o rw,noatime /dev/block/loop52 /mnt/ext
I have an ext4 image file stored in sdcard.
How can I mount the ext4 image file in my non rooted android phone or Is there any other way to access it ?
Asked by jonny789
(385 rep)
Jul 21, 2021, 06:00 AM