my backup strategy is to backup every new device, soon as i get my hands on it. and then, before every significant change. sometimes, i might just take two backups and compare them.
nook community has made the backup process rather straightforward.
download noogie.img from either:
http://code.google.com/p/nst-recovery/downloads/detail?name=noogie.img.gz (recommended)
http://code.google.com/p/nst-mod/downloads/detail?name=noogie.img
extract .img, if you downloaded the .gz
$ gunzip noogie.img.gz
write .img to a spare sdcard. note: sdcard contents will be erased.
# dd if=noogie.img of=/dev/sd? bs=1M
usual process is
1. power-off nook 2. insert noogie sdcard 3. power-on nook 4. usb connect to computer 5. backup/restore disk/partition
depending on os/preferences, step #5 might be different. restore process is the same.
i use debian, and find the standard nix utils to be the best, most efficient, and universal.
backup
# dd if=/dev/sdb of=backup.img bs=1M
restore
# dd if=backup.img if=/dev/sdb bs=1M
gzip this .img to ensure integrity and save diskspace
$ gzip -9 backup.img
i lost the back up what should i do ?
ReplyDelete