Dump Android eMMC Raw Image and Mount The Partitions Content on Ubuntu HD

29.09.2016
Dump Android eMMC Raw Image and Mount The Partitions Content on Ubuntu Requirements : ===================================================== - Android Device : * Rooted android device * Busybox installed, if not, install it first from https://play.google.com/store/apps/details?id=stericson.busybox&hl=en - PC : * Running Ubuntu OS * Adb, kpartx, netcat, pv, parted installed, if not execute this command on terminal : "sudo apt install adb kpartx netcat pv parted" Step by step : ===================================================== + Dump Process - Connect android device to pc - Make sure usb debugging is active and authorized, execute this command on terminal : "adb devices" -- device status should be xxxxxxxx(serial number) device - Execute these commands on terminal : "adb forward tcp:5555 tcp:5555" "adb shell" "su" "nc -l -p 5555 -e dd if=/dev/block/mmcblk0" - Open new terminal and execute these commands : "mkdir ~/dump" "cd ~/dump" "nc 127.0.0.1 5555 | pv -i 0.5 > mydump.img" -- replace > with bracket - Wait until dump process completed + Mount Process - Execute these commands on terminal : "cd ~/dump" "sudo parted mydump.img print" -- to see partitions list "sudo kpartx -a -v mydump.img" -- all mountable partition will be listed on files explorer, just click on partition to mount it "sudo kpartx -d -v mydump.img" -- to delete device mapper, make sure all mounted partition has been unmounted before do this Thank you

Похожие видео

Показать еще