![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Display Modes |
#1
|
|||
|
|||
![]()
in my system I have 2 hard drives 80 gig each
hard drive 1 has 3 partitions hard drive 2 is blank at the moment - I want to use this drive to store backup of drive 1 can anyone recommend any software that can do incremental backups each day at a particular time so that if my main hard drive fails I can restore it from the backup by say using a floppy boot disk and it will restore the whole drive as it was originally from the 2nd hard drive. I know backup in XP will back the drive up and restore it but only after installing xp on the computer first. I want to do it like a restore disk that some pc manufacturers supply with new systems I hope I make sense thanks for your help in advance |
#2
|
|||
|
|||
![]()
chris wrote:
in my system I have 2 hard drives 80 gig each hard drive 1 has 3 partitions hard drive 2 is blank at the moment - I want to use this drive to store backup of drive 1 can anyone recommend any software that can do incremental backups each day at a particular time so that if my main hard drive fails I can restore it from the backup by say using a floppy boot disk and it will restore the whole drive as it was originally from the 2nd hard drive. I know backup in XP will back the drive up and restore it but only after installing xp on the computer first. I want to do it like a restore disk that some pc manufacturers supply with new systems xxcopy. http://www.xxcopy.com No sweat. -- Chuck F ) ) Available for consulting/temporary embedded and systems. http://cbfalconer.home.att.net USE worldnet address! |
#3
|
|||
|
|||
![]() |
#4
|
|||
|
|||
![]()
On Wed, 19 May 2004 16:29:25 +0800, chris wrote:
in my system I have 2 hard drives 80 gig each hard drive 1 has 3 partitions hard drive 2 is blank at the moment - I want to use this drive to store backup of drive 1 can anyone recommend any software that can do incremental backups each day at a particular time so that if my main hard drive fails I can restore it from the backup by say using a floppy boot disk and it will restore the whole drive as it was originally from the 2nd hard drive. You're referring to a type of backup called imaging. There are a few commercial titles which will do that, but why not save your money and just do it for free? Download a "Live" Linux distro, such as Knoppix http://www.knoppix.com/ and just use the following command from the bash prompt, once you've booted into Linux from the CD: dd if=/dev/hda of=/mnt/backup/hda-full.img Where /mnt/backup is your mounted second drive (hdb?). If you use a filesystem like ext2/3 or ReiserFS then you don't need to worry about filesize limits either (FAT32 is limited to ... 4GB is it?). I just imaged 2 36GB drives to a 147GB backup drive, in about an 45 mins. Restoring the image, is as simple as: dd if=/mnt/backup/hda-full.img of=/dev/hda Simple. Notes: 1) ... It's free. 2) ... It's reliable, and you can use md5sum to check the images' integrity. 3) ... You will *not* need to install Linux, although you can if you want. 4) ... You will have to do "cat /proc/partitions" to check the device names of your drives. IDE drives are typically named hda, hdb, hdc ... etc., while SCSI drives are typically sda, scb, sdc ... etc. Partitions on hda would be hda1, hda2, hda3 ... you get the idea. 5) ... You'll have a free bootable OS on a CD, that you can use for other "rescue" operations, as well as the vast array of typical Linux software, including a full office suite (OpenOffice.org), web browsers, games, etc. Check out this review: http://www4.tomshardware.com/howto/20040303/index.html Also, if you don't have broadband, you can "buy" Knoppix for £2.50 from here (UK): http://www.linuxemporium.co.uk/products/standalone/ Or for $4.99 from here (US): http://tinyurl.co.uk/yctg Or for 10 AUD from one of my favourite Aussie sites, EverythingLinux: http://www.everythinglinux.com.au/ It's also on this months Linux Format DVD (LXF54 June 2004): http://www.linuxformat.co.uk/ Dunno about US Linux print mags, but I assume they publish distos on their coverdiscs on a fairly regular basis. - [H]omer |
#5
|
|||
|
|||
![]()
Homer,
Very interesting information, thats vaulable to me. I was going to recommend Acronis Trueimange because it's reliable and simple, but Homer's idea is another "free" alternative, although a bit more complicated. Thanks for the info. Homer! Edward W. El Paso, TX "[H]omer" wrote in message news ![]() On Wed, 19 May 2004 16:29:25 +0800, chris wrote: in my system I have 2 hard drives 80 gig each hard drive 1 has 3 partitions hard drive 2 is blank at the moment - I want to use this drive to store backup of drive 1 can anyone recommend any software that can do incremental backups each day at a particular time so that if my main hard drive fails I can restore it from the backup by say using a floppy boot disk and it will restore the whole drive as it was originally from the 2nd hard drive. You're referring to a type of backup called imaging. There are a few commercial titles which will do that, but why not save your money and just do it for free? Download a "Live" Linux distro, such as Knoppix http://www.knoppix.com/ and just use the following command from the bash prompt, once you've booted into Linux from the CD: dd if=/dev/hda of=/mnt/backup/hda-full.img Where /mnt/backup is your mounted second drive (hdb?). If you use a filesystem like ext2/3 or ReiserFS then you don't need to worry about filesize limits either (FAT32 is limited to ... 4GB is it?). I just imaged 2 36GB drives to a 147GB backup drive, in about an 45 mins. Restoring the image, is as simple as: dd if=/mnt/backup/hda-full.img of=/dev/hda Simple. Notes: 1) ... It's free. 2) ... It's reliable, and you can use md5sum to check the images' integrity. 3) ... You will *not* need to install Linux, although you can if you want. 4) ... You will have to do "cat /proc/partitions" to check the device names of your drives. IDE drives are typically named hda, hdb, hdc ... etc., while SCSI drives are typically sda, scb, sdc ... etc. Partitions on hda would be hda1, hda2, hda3 ... you get the idea. 5) ... You'll have a free bootable OS on a CD, that you can use for other "rescue" operations, as well as the vast array of typical Linux software, including a full office suite (OpenOffice.org), web browsers, games, etc. Check out this review: http://www4.tomshardware.com/howto/20040303/index.html Also, if you don't have broadband, you can "buy" Knoppix for £2.50 from here (UK): http://www.linuxemporium.co.uk/products/standalone/ Or for $4.99 from here (US): http://tinyurl.co.uk/yctg Or for 10 AUD from one of my favourite Aussie sites, EverythingLinux: http://www.everythinglinux.com.au/ It's also on this months Linux Format DVD (LXF54 June 2004): http://www.linuxformat.co.uk/ Dunno about US Linux print mags, but I assume they publish distos on their coverdiscs on a fairly regular basis. - [H]omer |
#6
|
|||
|
|||
![]()
On Thu, 20 May 2004 02:04:20 +0000, Edward A. Weissbard wrote:
Very interesting information, thats vaulable to me. I was going to recommend Acronis Trueimange because it's reliable and simple, but Homer's idea is another "free" alternative, although a bit more complicated. Thanks for the info. Homer! No probs. Here's a more detailed guide: http://www.inference.phy.cam.ac.uk/s...artitions.html - [H]omer |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Hard Disk Recovery Software | John F Kappler | General | 1 | May 16th 04 02:32 AM |
Physical and software structures of a HD | Susma Rio Sep | General | 0 | January 21st 04 11:55 PM |
Recommendations on backup software please | atDFN | General | 10 | January 21st 04 01:45 PM |
Hard disk does not show in BIOS. Extract data from HDD? | Kanolsen | General | 1 | November 14th 03 10:03 PM |
Best software for backup up files and copying DVDs with DVD-R drive? | Some One | General | 5 | August 10th 03 07:20 AM |