Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何从 android 的 sd 卡 (/mnt/sdcard) 中读取原始字节?当然,我需要 root 访问权限,但一般情况下是否可能。在 linux 中,我可以使用 dd 命令dd if=<source> of=<target> bs=<byte size>并将原始字节写入临时文件。Android中的解决方案是什么?
dd if=<source> of=<target> bs=<byte size>
Android 在底层仍然是 Linux,并且将dd二进制文件作为系统的一部分。您可以像在任何其他 Linux 安装上一样使用它。你可以在/system/bin/dd.
dd
/system/bin/dd