Quote from Scataphagos:
What is "interleave optimized"?
My mistake I mistyped the term - not "interleave optimized" - it is a little more complicated.
First you have to create a partition at an explicit disk offset for required cylinder alignment using diskpart.exe
=======================
For example:
=======================
Diskpart> select disk 4
Diskpart> list partition
Partition ### Type Size Offset
------------- ---------------- ------- -------
Partition 1 Primary 4094 MB 31 KB
Partition 2 Extended 4581 MB 4094 MB
Partition 3 Logical 2047 MB 4094 MB
Partition 4 Logical 2533 MB 6142 MB
=======================
The Offset 31KB has to be 32KB to be aligned for optimized disk read/write.
Also you have to format with a suitable sector size. Usually sector size is 2KB, I am using 64KB.
With these two measures you can ensure:
1) the OS is reading disk sectors from aligned address
2) the OS is reading bigger chunks from the disk at a time.
That way the slowest operations - I/O work faster.
Make sure Windows 7 is supporting your disk drive directly.
You have to create a bootable CDROM with Windows AIK and execute diskpart.exe from there.
It takes a lot of work but is worth the efforts. The speed gains can be in order of ~50%-100%.