dd use
Markus Hitter
mah at jump-ing.de
Sun Dec 28 14:01:58 UTC 2008
Am 28.12.2008 um 14:32 schrieb Nils Kassube:
> Tony Arnold wrote:
>> mkdir /mnt/sdb1
>> mount /dev/sdb1 /mnt/sdb1
>> dd if /dev/sda1 of /mnt/sdb1/<filename>
>>
>> should do it.
>
> No, the dd syntax would be
>
> dd if=/dev/sda1 of=/mnt/sdb1/<filename>
Additionally, you likely want the bs option to speed things up ...
dd if=/dev/sda1 of=/mnt/sdb1/<filename> bs=1m
... and compress the stuff along the way:
dd if=/dev/sda1 bs=1m | gzip -c > /mnt/sdb1/<filename>.gz
Markus
- - - - - - - - - - - - - - - - - - -
Dipl. Ing. Markus Hitter
http://www.jump-ing.de/
More information about the ubuntu-users
mailing list