Drive clone in Linux with dd
Monday, February 3rd, 2014Simple way to clone drives in Linux. Assume drive sda is the source, and sdb is the destination. dd if=/dev/sda of=/dev/sdb & PID=$!; which kill -USR1 $PID; & runs dd in the background. PID=$! gets the last process id (of the dd command) Which runs the command every second or two. Kill -USR1 tells dd […]