-3

1

As you seen on the picture, i wanna image of my Galaxy S4 I9500 on adb using dd on Linux Mint. The commands I use are as follows:

first adb shell then adb devices to list of my device. And the last adb shell su -c dd if=/dev/block/mmcblk0 of=/storage/sdcard1/img.bin and the terminal says error: device not found.. How can i solve this problem and how can success the imaging my android phone using dd?

Thanks..

idrisyagci
  • 218
  • 4
  • 19
  • Why are you trying to use dd to image the device? – Ray Hunter Aug 15 '16 at 19:03
  • 1
    How can i image else ? – idrisyagci Aug 15 '16 at 19:25
  • bro, you might want to make you intent to " i dont wanna wipe. i wanna phsycal dump of my phone." more apparent near the top of your Q, as it seems most readers are interpreting incorrectly. I would expect `dd` to work as you have tried, but given the error msg, there is either a misspelling in your cmd, or permissions issues that are really at the root of your problem. Good luck. – shellter Aug 15 '16 at 21:50
  • Also, you should replace the screen shot with a copy/paste of the relevant information. Use `{}` from the edit screen toolbar on highlighted text to keep the formatting. AND, in the output you do show, I don't see any "list of devices", only a header msg, with an empty space below. Where are you getting `mmcblk0` ? Good luck. – shellter Aug 15 '16 at 21:53
  • What does this command give you? adb shell cat /proc/partitions – Ray Hunter Aug 16 '16 at 02:35
  • @srayhunter when i command "adb shell cat /proc/partitions" i can see my phones partitions and you can see ss on link [link](http://i.hizliresim.com/E3zga8.png) – idrisyagci Aug 16 '16 at 07:56
  • @shellter thanks your your advice. you're right. I should have explain more clearly. But, i added all the commands I use with a ss on my question, and i add again at here. [link](http://i.stack.imgur.com/TuN1R.png) and also my phone has rooted. Thanks again.. – idrisyagci Aug 16 '16 at 08:02
  • Check my updated message below. If that does not work, you can try and stream the output from dd over the adb bridge to your computer. – Ray Hunter Aug 17 '16 at 04:01

1 Answers1

-1

Try these commands and let me know know if that works:

adb shell
su
dd if=/dev/block/mmcblk0 of=/sdcard/system.img
Ray Hunter
  • 15,137
  • 5
  • 53
  • 51
  • Not bro. i dont wanna wipe. i wanna phsycal dump of my phone. So i need to learn dumping use dd command. How can i dumping my android phone using dd command? – idrisyagci Aug 15 '16 at 20:52
  • @bedesten1618 this has been updated to copy the image and not wipe the data. – Ray Hunter Sep 15 '16 at 16:50