LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Quick backup quick recovery (https://www.linuxquestions.org/questions/linux-newbie-8/quick-backup-quick-recovery-901211/)

rmcellig 09-05-2011 06:38 AM

Quick backup quick recovery
 
I am coming from the Mac side after using Macs since 1988. On the Mac side I use cloning software that allows me to clone my drive nightly to an external USB drive. Set it and forget it. There doesn't seem to be anything on the Linux side that offers this kind of ease of use. Therefore, I am asking the community to give me viable alternatives that are drop dead easy to use. I have some friends who are thinking of switching to Linux. I have to make it so that they will be able to backup their computers and restore them quickly in a simple straight forward manner that even my Mom could do.

Any ideas? I would love my friends to have a positive initial experience with Linux and I know that this is one of the issues they have if they are to switch over. If disaster strikes, they want a quick and easy way to get back up and running.

pierre2 09-05-2011 07:34 AM

Probably nothing that is going to be as Automatic, as you are used to. :cry:

some folk use DD from within a script file, to automate that process, a bit.
otherwise, it's somewhat a manual thing:- Gparted can clone a drive or a partition.

LuckyBackup will not clone anything But can backup, say your /data partition.

APTonCD will backup your programs, inasmuch that your don't have to D/L them again.

there are other ways, as well, But - which 'nix are you looking @ using??

rmcellig 09-05-2011 08:38 AM

I just found something that really is easy. It's called Redo backup. Boot from the CD or USB stick, click on backup, choose source/destination. That's it. A Cloned image of your drive. Very easy!!!

schneidz 09-05-2011 09:33 AM

this works for me:
Code:

# to back up:
$ dd if=/dev/sdb bs=4096 | bzip2 > fc11-live-usb.iso.bz2
# to restore:
$ bunzip2 -c fc11-live-usb.iso.bz2 | dd bs=32M of=/dev/sda

you could wrap it up in a tcl/tk or zenity gui but i think this is simple enough to copy-paste into a terminal.

chrism01 09-05-2011 06:19 PM

Have a look at Clonezilla http://clonezilla.org/

rmcellig 09-05-2011 06:33 PM

I used Clonezilla a while back but was looking for something simpler. Then, today, I downloaded and burned a copy of the latest Parted Magic CD which I think every Linux user should keep on hand. I tried Clonezilla again and all is well. It's not actually all that bad. Worked well.

grail 09-05-2011 07:38 PM

Friend of mine recommended the following but not exactly sure of its abilities or whether they match exactly what you want:

http://www.r1soft.com/tools/linux-hot-copy/

Also, it is propriety :(

chrism01 09-06-2011 07:43 PM

I like well-behaved SW http://dictionary.reference.com/browse/propriety :)


All times are GMT -5. The time now is 02:50 AM.