MVWT disk reimaging: Difference between revisions
From Murray Wiki
Jump to navigationJump to search
No edit summary |
No edit summary |
||
Line 4: | Line 4: | ||
Format tje new disk | Format tje new disk | ||
* fdisk /dev/hdd | * fdisk /dev/hdd (not completely sure about partitions; check domitilla's document) | ||
* mkfs.ext2 /dev/hdd1 | * mkfs.ext2 /dev/hdd1 | ||
Revision as of 19:19, 16 January 2007
Copying the information off of the old disk
- Mount the flash disk in a working computer
- dd if=/dev/hdd1 of=flash.dd
Format tje new disk
- fdisk /dev/hdd (not completely sure about partitions; check domitilla's document)
- mkfs.ext2 /dev/hdd1
Copy the information back onto the new disk
- dd if=flash.dd of=/dev/hdd1
- mount /dev/hdd1 /mnt/flash