I'm trying to use SSH to make a disk image by using DD on an iPod.
And I'm using this commands:
ssh root@192.168.1.100 dd if=/dev/rdisk0s1 bs=1M | dd of=iphone-root.img
ssh root@192.168.1.100 dd if=/dev/rdisk0s2s1 bs=1M | dd of=iphone-user.img
What's the meaning of: /dev/rdisk0s1 and /dev/rdisk0s2s1? It seems they're references to places in the disk, how can I know how many places are in this disk?


ddcommand is being sent to the iPod. – psusi Nov 27 '12 at 20:14