Results 1 to 2 of 2
This probally has a simple answer but I need that answer ...
In RH9 I backed up my MBR
I backed up like:
Code:
dd if=/dev/sda of=/mnt/nfs/mbr.img bs=512 count=1
This ...
- 11-06-2006 #1
dd MBR restore?
This probally has a simple answer but I need that answer
...
In RH9 I backed up my MBR
I backed up like:
This should work in SuSE I just need to know how to restore it.Code:dd if=/dev/sda of=/mnt/nfs/mbr.img bs=512 count=1
Thanx
jw...
- 11-06-2006 #2
Hi joewee !!
command is same in all Linux distros.
this command copy contents of disk 'sda' from sector 1 to 512 and saves in file /mnt/nfs/mbr.img.Code:dd if=/dev/sda of=/mnt/nfs/mbr.img bs=512 count=1
this will do the same...... copy from file and saves it to disk.....Code:dd if=/mnt/nfs/mbr.img of=/dev/sda bs=512 count=1

casperIt is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First


Reply With Quote