* Example use of dd command to create an ISO disk image from a CD-ROM: dd if=/dev/cdrom of=/home/sam/myCD.iso bs=2048 conv=sync
*Using dd to wipe an entire disk with random data: dd if=/dev/urandom of=/dev/hda
*Using dd to clone a hard disk to another hard disk: dd if=/dev/ad0 of=/dev/ad1 bs=1M conv=noerror
*Duplicate a disk partition as a […]
Recent Comments