Direkt zum Hauptbereich

Posts

Es werden Posts vom Dezember, 2007 angezeigt.

Komplett backup

Hier ist ein gutes Howto, der sich sowohl mit partimage als auch dem MBR befasst: http://ubuntuforums.org/showthread.php?t=360283 SFDISK (partition table backup) (untested) Make: sfdisk -d /dev/hda > bak-hda Restore: sfdisk /dev/hda < bak-hda MBR BACKUP (untested) Backup: dd if=/dev/hdx of=MBR-backup bs=512 count=1 Restore: dd if=MBR-backup of=/dev/hdx bs=512 count=1 Backup Boot Code Only: dd if=/dev/hdx of=MBR-backup bs=448 count=1 Restore Boot Code Only: dd if=MBR-backup of=/dev/hdx bs=448 count=1 Install Grub: grub-install /dev/hda PARTIMAGE (command line method) partimage -z1 -o -d save /dev/hda5 /mnt/myhd/rescuefile Image einer partition erstellen, aber nur bei runtergefahrenem System möglich: http://wiki.ubuntuusers.de/partimage Hier habe ich eine einfache Methode gefunden, wie sich unter Linux ein Komplettbackup erstellen lässt: http://ubuntuforums.org/showthread.php?t=35087 : Backup erstellen: tar cvpzf backup.tgz --exclude=/proc --exclude=/lost+found --exc