Results 1 to 3 of 3

Thread: What to backup

  1. #1
    Join Date
    Jan 2005
    Location
    South Africa
    Beans
    2,098
    Distro
    Ubuntu 12.04 Precise Pangolin

    What to backup

    Note to moderators:
    Not sure where to post this; was not quite an Ubuntu question but also not really an 'other os' question.

    My wife had dual a boot WinXP / Ubuntu 10.04 laptop. Somebody borrowed the laptop and decided to install Win7 (with or without agreement is debatable).

    All partitions still seem to be there and I made a backup (dd) of his Win7 (/dev/sda1; on his request). If I also make a backup of the MBR, will I be able to restore Win7 if needed. Or is there something else I need to backup as well to get the system back to the current state?

    Note
    I'm going to re-install WinXP and probably upgrade Ubuntu (possibly to 12.04 flavor).
    If you don't make backups of your important data, your data is obviously not important to you.

  2. #2
    Join Date
    Jul 2005
    Beans
    2,047

    Re: What to backup

    You can always copy the MBR directly with dd:

    Code:
    sudo dd if=/dev/sda of=./out.mbr bs=446 count=1
    This copies only the MBR and not the partition table. If you want the partition table too then do:

    Code:
    sudo dd if=/dev/sda of=./out.mbr bs=512 count=1
    Restoring just the MBR without partition table is a bit safer. I guess there are cases where you might want both. (If you restore the partition table, the old partition structure is blown away.)

    Using dd to copy partitions is crude but should work if you are careful - but you have to be careful when you restore it. Clonezilla would probably be a lot more efficient.

  3. #3
    Join Date
    Jan 2005
    Location
    South Africa
    Beans
    2,098
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: What to backup

    Thanks; I can always chop the last few bytes of the 512 byte backup. I like to keep the partition table though as that defines the size of sda1.

    Marked as solved.
    If you don't make backups of your important data, your data is obviously not important to you.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •