Penguin

Differences between version 6 and previous revision of ddNotes.

Other diffs: Previous Major Revision, Previous Author, or view the Annotated Edit History

Newer page: version 6 Last edited on Saturday, June 9, 2007 10:59:47 am by BenStaz Revert
Older page: version 5 Last edited on Friday, June 8, 2007 5:20:06 pm by BenStaz Revert
@@ -1,9 +1,9 @@
 !! Clone a Harddrive 
  
 Lets say that ''/dev/sda'' is the hdd we wish to clone, and that ''/dev/sdb'' is an empty drive that is to be used as the target. 
  
-* dd if=/dev/sda of=/dev/sdb bs=32768  
+* dd if=/dev/sda of=/dev/sdb bs=1M  
  
 Note : the destination harddrive should be equal or larger in size to the source harddrive. 
  
 ----