Okay so I'm trying to recover all the images on a Samsung Galaxy Tab Pro,
by following this guide Because there is a lot of pictures on it, that has to be recovered.
So far I have done everything the guide told me to, with some small changes.
First of all I found out that I have to use port 5037 instead of 5555 in this code line:
 	
 
 Because if I use 5555 i get the "Address already in use"
And I only get access if I use 5037 instead.
Right now I'm stuck at step 6 in the guide. First nothing worked, I didn't get any progress, and the byte data was 0 all the time. Even the timer didn't begin to count the time. After some research in the guide i found out,
that I had to use ncat instead of nc
When I use this code line:
 	
 
 This means the timer is counting now. But still no progress, except after a 2 - 3 minutes I get an error telling me the file or directory doesn't exist. The guide say that I maybe have to use another mmcblk, I tried a few, same thing. Therefore I tried to use this:
 	
 
 And got this:
 	
 
 Now my question is, whats next?
I hope to find the lost pictures on the tablet, but I'm not sure what to do.
I can see the the info about userdata is; /dev/block/mm, but it's the same thing like the others I have tried..
Yes I did root the tablet, and yes "BusyBox" and "adb shell" have Root access
Everything is like it should be, but still I'm stuck.
What I'm I missing?
  by following this guide Because there is a lot of pictures on it, that has to be recovered.
So far I have done everything the guide told me to, with some small changes.
First of all I found out that I have to use port 5037 instead of 5555 in this code line:
Code:
 	/system/xbin/busybox nc -l -p 5037 -e /system/xbin/busybox dd if=/dev/block/mmAnd I only get access if I use 5037 instead.
Right now I'm stuck at step 6 in the guide. First nothing worked, I didn't get any progress, and the byte data was 0 all the time. Even the timer didn't begin to count the time. After some research in the guide i found out,
that I had to use ncat instead of nc
When I use this code line:
Code:
 	ncat 127.0.0.1 5555| pv -i 0.5 > mmcblk0p12.rawCode:
 	ls -l /dev/block/platform/*/by-nameCode:
 	lrwxrwxrwx root     root              1970-01-01 21:14 aboot -> /dev/block/mmcbl                                                                                                              k0p6
 lrwxrwxrwx root     root              1970-01-01 21:14 apnhlos -> /dev/block/mmc                                                                                                              blk0p1
 lrwxrwxrwx root     root              1970-01-01 21:14 backup -> /dev/block/mmcb                                                                                                              lk0p17
 lrwxrwxrwx root     root              1970-01-01 21:14 boot -> /dev/block/mmcblk                                                                                                              0p14
 lrwxrwxrwx root     root              1970-01-01 21:14 cache -> /dev/block/mmcbl                                                                                                              k0p24
 lrwxrwxrwx root     root              1970-01-01 21:14 dbi -> /dev/block/mmcblk0                                                                                                              p4
 lrwxrwxrwx root     root              1970-01-01 21:14 ddr -> /dev/block/mmcblk0                                                                                                              p5
 lrwxrwxrwx root     root              1970-01-01 21:14 efs -> /dev/block/mmcblk0                                                                                                              p11
 lrwxrwxrwx root     root              1970-01-01 21:14 fota -> /dev/block/mmcblk                                                                                                              0p16
 lrwxrwxrwx root     root              1970-01-01 21:14 fsc -> /dev/block/mmcblk0                                                                                                              p19
 lrwxrwxrwx root     root              1970-01-01 21:14 fsg -> /dev/block/mmcblk0                                                                                                              p18
 lrwxrwxrwx root     root              1970-01-01 21:14 hidden -> /dev/block/mmcb                                                                                                              lk0p25
 lrwxrwxrwx root     root              1970-01-01 21:14 modem -> /dev/block/mmcbl                                                                                                              k0p2
 lrwxrwxrwx root     root              1970-01-01 21:14 modemst1 -> /dev/block/mm                                                                                                              cblk0p12
 lrwxrwxrwx root     root              1970-01-01 21:14 modemst2 -> /dev/block/mm                                                                                                              cblk0p13
 lrwxrwxrwx root     root              1970-01-01 21:14 pad -> /dev/block/mmcblk0                                                                                                              p9
 lrwxrwxrwx root     root              1970-01-01 21:14 param -> /dev/block/mmcbl                                                                                                              k0p10
 lrwxrwxrwx root     root              1970-01-01 21:14 persdata -> /dev/block/mm                                                                                                              cblk0p22
 lrwxrwxrwx root     root              1970-01-01 21:14 persist -> /dev/block/mmc                                                                                                              blk0p21
 lrwxrwxrwx root     root              1970-01-01 21:14 recovery -> /dev/block/mm                                                                                                              cblk0p15
 lrwxrwxrwx root     root              1970-01-01 21:14 rpm -> /dev/block/mmcblk0                                                                                                              p7
 lrwxrwxrwx root     root              1970-01-01 21:14 sbl1 -> /dev/block/mmcblk                                                                                                              0p3
 lrwxrwxrwx root     root              1970-01-01 21:14 ssd -> /dev/block/mmcblk0                                                                                                              p20
 lrwxrwxrwx root     root              1970-01-01 21:14 system -> /dev/block/mmcb                                                                                                              lk0p23
 lrwxrwxrwx root     root              1970-01-01 21:14 tz -> /dev/block/mmcblk0p                                                                                                              8
 lrwxrwxrwx root     root              1970-01-01 21:14 userdata -> /dev/block/mmI hope to find the lost pictures on the tablet, but I'm not sure what to do.
I can see the the info about userdata is; /dev/block/mm, but it's the same thing like the others I have tried..
Yes I did root the tablet, and yes "BusyBox" and "adb shell" have Root access
Everything is like it should be, but still I'm stuck.
What I'm I missing?
via xda-developers http://ift.tt/1TeCNbb
Put the internet to work for you.
No comments:
Post a Comment