Every mounted partition you see in /mnt has its counter part in /dev .
I.e. /mnt/sda1 and /dev/sda1 .
If you want to dd the contents of a device into a file on a filesystem, you'd do something like
[code]dd if=/dev/sda1 of=/mnt/sdc1/partition.i...
I.e. /mnt/sda1 and /dev/sda1 .
If you want to dd the contents of a device into a file on a filesystem, you'd do something like
[code]dd if=/dev/sda1 of=/mnt/sdc1/partition.i...