Copying entire disk to another disk in linux
Written By smart|
3 July 2009|
No Comment
Here i am going to explain copying from /dev/sda2 to /dev/sdb3
/dev/sda2( Source disk)
/dev/sdb3(destination disk)
sync(Use synchronized I/O for data and metadata)
noerror(Continue copy operation after read errors)
admin@smartproteam$ dd if=/dev/sda2 of=/dev/sdb3 conv=noerror,sync
Leave your response!