A
Arno
Ant said:Hello!
Am I understanding correctly that these terms are basically the same?
They are not. Sector are the storage unit of the
underlying storage device, while clusters are the Microsoft
filesystem block sizes. Clusters are typically
a multiple of the sector size (512 Bytes for HDDs and 2048
Bytes for some optical media).
If
so, then why did my client's updated Windows 2000 SP4's chkdsk (/r /f
parameters and rebooted to run it) on a HDD (NTFS) in an old Dell
Optiplex system say there was a bad cluster and was able to move a file
to a better place, but I rerun chkdsk in Windows 2000 and ran a chkdsk
(no parameters) and it found 0 KB of bad sector?
Well, a bad cluster is usually a cluster marked bad in the
filesystem This is a leftover artefact from the time when
HDDs diod expose their bad areas to the OS. Typically a
cluster gets marked bad if one or more sectors in it
experience a read error.
A HDD only marks a sector as bad when it cannot by extended
effoprt read that sector. However it will still try to read
it on a new request from the OS and it will not export that
marking to the OS, except in the SMART selftest log and there
only for the first found one. What the marking by the HDD is
for is to allow it to reallocated (replace with a good one)
the sector on a write.
So sectors is on the hardware and the low-level drivesr,
while clusters is in the (abstract) filesystem layer.
Arno