Results 1 to 5 of 5

Thread: Full System Backup

  1. #1
    Join Date
    Apr 2009
    Location
    Riverside, CA
    Beans
    86
    Distro
    Ubuntu 9.10 Karmic Koala

    Full System Backup

    Possible? I love the way my Ubuntu OS is setup but I have a habit of **** it up, anyway to do a system backup? snap shot? image? anything?

    please and thanks

  2. #2
    Join Date
    Nov 2007
    Beans
    589
    Distro
    Ubuntu

    Re: Full System Backup

    You can back the whole hard drive/partition up with dd:
    Code:
    $ dd if=/dev/sdXX of=/path/to/your/image/backup.img
    you can clone it to a another hard drive too:
    Code:
    $ dd if=/dev/sdXX of=/dev/sdXX
    I usually have my /home in a different partition, that way all my personal configurations and data remain intact should I need to make a clean install.

  3. #3
    Join Date
    Oct 2008
    Location
    Down Under
    Beans
    1,568
    Distro
    Ubuntu Budgie 18.04 Bionic Beaver

    Re: Full System Backup

    Clonezilla is very good -

    http://www.clonezilla.org/

  4. #4
    Join Date
    Apr 2008
    Location
    224.0.0.5
    Beans
    372
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Full System Backup

    Quote Originally Posted by darolu View Post
    You can back the whole hard drive/partition up with dd:
    Code:
    $ dd if=/dev/sdXX of=/path/to/your/image/backup.img
    you can clone it to a another hard drive too:
    Code:
    $ dd if=/dev/sdXX of=/dev/sdXX
    I usually have my /home in a different partition, that way all my personal configurations and data remain intact should I need to make a clean install.
    Is /home location, were all the configuration files saved for applications?
    Arrakis

  5. #5
    Join Date
    Jan 2007
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: Full System Backup

    Quote Originally Posted by e24ohm View Post
    Is /home location, were all the configuration files saved for applications?
    Most of your personal settings are in your /home folder (/home/yourusername). Many system configuration files which may be important to you, such as fstab if you made many changes to it, network settings, and the default Grub 2 settings, are stored in various /etc folders.

    When I'm doing a clean install I usually make straight copies of my /home, /etc, and /boot folders for quick reference, even though I have backups in less accessible locations/formats.
    Back to Xorg...

    Retired.

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
  •