There is well know tool in Linux called dd for disk transfer. For example if I wanted to copy from /dev/sda to /dev/sdb I used to do:
dd if=/dev/sda of=/dev/sdb
There is no need to use dd when a simple cat will do:
cat /dev/sda > /dev/sdb
Beside saving key strokes it copies three times faster!