我扎根了我的Android手机并获得shell thr adb。我想在Android中挂载一个ROM图像。但我总是失败:
mount -o循环/sdcard/myimage.img / mnt
挂载:无法设置循环设备:没有这样的文件或目录
我扎根了我的Android手机并获得shell thr adb。我想在Android中挂载一个ROM图像。但我总是失败:
mount -o循环/sdcard/myimage.img / mnt
挂载:无法设置循环设备:没有这样的文件或目录
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 directory
尝试: mount -o loop /sdcard/myimage.img myimage
。 "myimage" 是您可以在后面查看内容的地方。
Try: mount -o loop /sdcard/myimage.img myimage
. "myimage" is where you can view the contents afterward.
您需要编译一个能够安装循环设备的自定义内核,或者找到已内置该功能的该设备的自定义内核。
经过一点挖掘,我找到了本指南在我的手机支持论坛上。这有点日期,但信息仍然是相关的。它显示了如何启动Debian .img文件。不幸的是,它并没有详细详述循环支持所需的内容,只是需要循环支持。但它绝对可能,因为我亲自在手机上运行了很少的时间。
You would need to compile a custom kernel that is capable of mounting loop devices, or find a custom kernel for that device that already has that feature built-in.
After a bit of digging, I found this guide on my phone's support forum. It's a bit dated, but the information is still relevant. It shows how to boot a Debian .img file. Unfortunately, it doesn't really detail EXACTLY what's needed for loop support, just that loop support is needed. But it is definitely possible, as I've personally run this on my phone for a short amount of time.
© 2022 it.wenda123.org All Rights Reserved. 问答之家 版权所有