Tagged Questions
1
vote
2answers
103 views
How do I view/mount nandroid file on device?
From Android's terminal, I tried to mount a nandroid img:
losetup -f
gives "/dev/loop0".
However, when I try losetup /dev/loop0 /sdcard/nandroid/... data.img it says no such directory. Same thing ...
1
vote
2answers
2k views
Android ADB Shell Recovery Mounting
*Question:
I need assistance mounting an Android phone's internal data using the Android ADB Shell while the unit is connected via USB and in recovery mode. How do I form a proper mount command? See ...
2
votes
0answers
471 views
Remount writable by all users?
I want to remount a read-only partition in read-write mode, but I want it to be writable for all users.
So far I've got this:
mount -o bind /someplace /someplace_else
mount -o remount rw ...
2
votes
2answers
3k views
Can i mount loopdevice in Android?
I have rooted my android phone and get a shell thr adb. I wanna mount a ROM image in android. But I always fail:
mount -o loop /sdcard/myimage.img /mnt
mount: can't setup loop device: No such file or ...
3
votes
2answers
1k views