You are in error because disk-imaging software doesn't access or even
recognise separate "files".
Disk-imaging software, as I have said twice now, woks by copying the
partition or physical disk - sector by sector - not file by file... Files
don't enter the equation with disk-imaging.
==
Cheers, Tim Meddick, Peckham, London. :-)
"Paul" <(E-Mail Removed)> wrote in message
news:j72rdb$ps4$(E-Mail Removed)...
> Tim Meddick wrote:
>> What you are saying makes no sense! - All data is treated exactly the
>> same - no matter what type of file it belongs to - when using imaging
>> software, the disk is continuously read and data copied at a consistent
>> rate of speed, only depending, as I said, on factors such as "speed and
>> resources of the computer, efficiency of installed HDs and backup method
>> & type of software employed".
>>
>> ==
>>
>> Cheers, Tim Meddick, Peckham, London. :-)
>
> Say, on average, it takes 10 milliseconds to move the head from one part
> of the disk to another. When the head is moving, no data can be
> transferred.
> Data can only be transferred when the head is stationary over the
> cylinder
> of interest.
>
> If I'm transferring 2KB files, I do a 10 millisecond head movement,
> followed
> by such a short transfer interval, the time for data transfer phase is
> very close
> to zero. (The time is 0.002MB / (125MB/sec) = 16 microseconds.)
>
> The relative percentage of the time that the disk is in data transfer
> phase, is
> 16 microseconds / (10 milliseconds plus 16 microseconds). 0.000016 /
> (0.010000 + 0.000016)
> is 0.16 percent.
>
> Now, if I'm working on big files, perhaps I spend 10 milliseconds to move
> the head, then I get to transfer a 100MB chunk of contiguous sectors. To
> move 100MB, at 125MB/sec sustained transfer rate, takes 0.8 seconds.
>
> Now, the relative percentage of the time I'm transferring data is
> 0.8 seconds / (10 milliseconds plus 0.8 seconds) or 0.8/0.81 or getting
> close to 100%. Now, I'm getting to use most of that sustained 125MB/sec
> transfer rate the head-to-media is rated for.
>
> To work an example, with the small file pattern, I can do around 100 head
> movements of 10 milliseconds each, in a given second. I can then transfer
> 200 small 2KB files, for a total of 400KB in that second. And that gives
> me 400KB/sec as a transfer rate. When the transfer pattern is dominated
> by the
> time spent on head movement, very little gets done. This is the pattern
> you
> see during disk defragmentation (which is why I mentioned 1MB/sec to
> around
> 3MB/sec - I've measured this with the Performance plugin, while the
> defragmenter is running).
>
> That's how I can estimate it will take one hour with movie files, and
> perhaps
> five hours if all the files are much smaller.
>
> If you don't believe me, get a copy of Robocopy, and copy one of your
> partitions to another empty partition. Use the Performance plugin in
> Windows,
> and add a counter to graph disk read bytes per second and disk write
> bytes per
> second. When Robocopy is copying your pagefile, the graph will jump to an
> average
> speed of 125MB/sec during the transfer of that file. (It'll take a few
> seconds
> to complete the transfer.) When it hits one of your directories which
> contains
> many small files, the transfer rate will plummet, because
> percentage-wise, in
> a given second in that case, most of the time is spent pushing the head
> around
> the platter and doing no useful transfer work.
>
> HTH,
> Paul