Thread: Backup software

  1. #1
    PC Fixer-Upper Waldo2k2's Avatar
    Join Date
    May 2002
    Posts
    2,001

    Backup software

    Ok,
    I need some backup software that will make an exact disk copy. The problem is, programs like driveimage from powerquest don't read linux file formats (i think image 2002 reads ext2, but I use xfs). So, I need a program that can backup my hard drive no matter what file format it's in, I searched for some source code that would help and couldn't find anything there either. Any help is appreciated, thanks.
    PHP and XML
    Let's talk about SAX

  2. #2
    5|-|1+|-|34|) ober's Avatar
    Join Date
    Aug 2001
    Posts
    4,429
    Have you tried Ghost? I don't know if it'll do Linux formats or not, but it's worth a shot.

  3. #3
    PC Fixer-Upper Waldo2k2's Avatar
    Join Date
    May 2002
    Posts
    2,001
    they support ext2/3 ,
    I need one that will do either byte by byte copies, or one that supports XFS
    PHP and XML
    Let's talk about SAX

  4. #4
    Registered User TravisS's Avatar
    Join Date
    Jun 2002
    Posts
    536
    In Linux you can use the 'dd' command. This is an exact byte-for-byte copy though so it's going to take up a lot of space and a lot of time. The destination file will need to be as big, if not bigger, than the source.

    It's really easy to use though. For example, say I have a Win XP installed on hda1, and wanted to make a copy to another drive for safe keepings (hda2) I'd do this:

    "dd if=/dev/hda1 of=/dev/hda/winbackup"

    to restore the EXACT duplicate in the future it would be the opposite:

    "dd if=dev/hda/winbackup of=/dev/hda1"

    this works very, very well but it is time consuming and space consuming. Though I suppose once you made the backup you could simply compress it, break it up to 700 MB chunks, and burn it to a CD

  5. #5
    PC Fixer-Upper Waldo2k2's Avatar
    Join Date
    May 2002
    Posts
    2,001
    thanks a lot!
    I figured there'd be something in linux, but I didn't dig very deep...hmm...now to download knopix and make a copy of the hard disk on my emergency system. Yea!
    PHP and XML
    Let's talk about SAX

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Mac backup software
    By brewbuck in forum Tech Board
    Replies: 2
    Last Post: 08-12-2008, 08:21 PM
  2. Software Design/Test - Redmond, WA
    By IRVolt in forum Projects and Job Recruitment
    Replies: 2
    Last Post: 06-11-2008, 10:26 AM
  3. Why C Matters
    By DavidP in forum A Brief History of Cprogramming.com
    Replies: 136
    Last Post: 01-16-2008, 09:09 AM
  4. Adding trial period to software
    By BobS0327 in forum C Programming
    Replies: 17
    Last Post: 01-03-2006, 02:13 PM
  5. Lost in C
    By David670 in forum C Programming
    Replies: 8
    Last Post: 10-31-2005, 11:19 PM