Just an FYI NTFS does not need to be normally defragmented. The only time I find it very adventageous to defrag is when using suspend to disk on a laptop and the page file was not set to a set size. Moving all over the disk while restoring from disk to ram is significantly slower than if the pagefile is contiguous. The other situation where defragging can help is a file server with many hundreds of thousands of files where scanning for the next piece of a file might mean that the head has to wait for the entire disk to rotate around thus causing average latency to increase, this problem is exacerbated with more users. Linux does not make these physical limitations of the disk subsystem magically disappear, just the filesystem is designed to make the worst case closer to the best case whereas something like FAT has a very fast best case, an ok average case, and a horrible worst case.
|