wrote:
> On Sun, 30 Oct 2011 16:48:47 -0500, Roy Smith <>
> wrote:
>
>> On Sun, 30 Oct 2011 21:01:59 GMT, thewiz <> wrote:
>>
>>> I did my first backup to an external drive and it took hours.
>>> My hard drive is 500G.
>>> Will it take less time as it does the next backups?
>> It all depends on what kind of backup you make. There are 3 different
>> kinds of backups differential, incremental, and full. A full backup
>> will always take the longest to perform as it is making a backup copy
>> of every file on the drive. Differential and Incremental backups both
>> require that you make a full backup first, then what they backup
>> differs slightly.
>>
>> A differential backup will backup any files that have been changed
>> since the last full backup. This gives you an advantage when
>> restoring files in that you only need 2 archives, the full backup and
>> the differential backup. It won't matter if your differential backup
>> is the first one created, or the 30th one, which ever one you use your
>> system will be restored to the state the PC was in when that backup
>> was created.
>>
>> An incremental backup makes a backup of any files that were changed
>> since the last full or incremental backup. This has the advantage of
>> taking less time to create a backup and are smaller in size than a
>> full backup. The disadvantage is that when restoring your system with
>> an incremental backup you'll need the full backup and all the
>> incremental backups in between. So for example let's say you wanted
>> to restore from your 5th incremental backup, you'd need the full
>> backup and incremental backups 1, 2, 3 and 4 as well. This brings in
>> the possibility of having one of your archive files being corrupted
>> and causing the restoration to fail. So it's a good idea to verify
>> the integrity of your backups especially when using this method.
>
>
> Thanks for the explanation of the different types of backup.
>
> Which would be fastest, a full backup or a clone of the drive.
>
> I was thinking that if the drive isn't full then a clone might be
> faster.
Sector by sector backup, transfers 500GB of data in your case.
All the sectors would be copied, even the empty ones, as the
tool doing the sector copy, doesn't care about the contents.
File by file backup (which is what a lot of backup utilities will do),
transfers only as much data as is present in the partition as files.
If you've used 20% of the available space, then 100GB of stuff
would be backed up from your 500GB C: partition. The tool doing the
file by file backup, has to understand the file system, and in Windows
that would be FAT32 or NTFS amongst others. If there is a "foreign
file system" on the hard drive (like UFS), your Windows backup program
may not be able to back it up. But a sector by sector backup, could
capture it, because sector by sector is "blind" to the file systems
used. It doesn't care.
Sector by sector is normally discouraged, due to the time and space
it takes. But if your disk is broken, and you need a "forensic" copy
of the disk (to guarantee nothing gets lost), that's when sector by sector
is the thing to use. For most "normal" "I'm not broken" situations,
file by file is the way to go.
(Example of scavenging a disk, sector by sector... Doing the best
you can, when a disk is physically broken and has bad spots.)
http://www.cgsecurity.org/wiki/Damaged_Hard_Disk
./ddrescue -n /dev/old_disk /dev/new_disk rescued.log
./ddrescue -r 1 /dev/old_disk /dev/new_disk rescued.log
HTH,
Paul