Results 1 to 2 of 2
I have a bootable version of RHEL 5.4 on a flashdrive that we use in the event of a disaster recovery. I would like to copy this to other usb ...
- 01-18-2012 #1Just Joined!
- Join Date
- Jan 2011
- Posts
- 87
Copy bootable USB
I have a bootable version of RHEL 5.4 on a flashdrive that we use in the event of a disaster recovery. I would like to copy this to other usb drives in case our original copy fails.
Is there a way that I can copy my current usb drive over the the new one and the new usb drive will be bootable as well?
- 01-18-2012 #2Linux Guru
- Join Date
- Apr 2009
- Location
- I can be found either 40 miles west of Chicago, or in a galaxy far, far away.
- Posts
- 8,961
Use the dd command to do this. Assuming the source drive is /dev/sdb and the target is /dev/sdc, do this:
There are options to make it more efficient, but this will do the job. Do note that you need to be root for this, and both drives should be unmounted.Code:dd if=/dev/sdb of=/dev/sdc
Sometimes, real fast is almost as good as real time.
Just remember, Semper Gumbi - always be flexible!


Reply With Quote
