The MFT file has two logical parts:
- Metadata that describes the location of the files used to maintain the NTFS filesystem and their location (16 records of 1 KByte each)
- $MFT (The MFT itself and known by the boot sector)
- $MFTmirr (Mirror of the MFT metadata and known by the boot sector)
- $LogFile (Journaling support file)
- $Volume (Information for the volume, such as the volume label, file system version, etc.)
- $. (Root directory)
- $Bitmap (Volume free space bitmap to find unused space)
- $Boot (Boot sector)
- $badclus (Bad Cluster File - Specifies all the bad clusters on the volume to avoid reuse)
- $Quota (Users rights on disk space usage)
- $Upcase (Maps accordance between upper and lower case letters for file names)
- Collection of records where each describes the location of a file or directory on the partition. Each record uses 1 KByte and is also called a File Record Segment (FRS).
- Always make sure that all NTFS drives has a minimum of 10% free space.
- Check that the MFT is not larger than the space reserved for it.
- Make sure that the cluster size of the partition is is 1024 bytes or more (4096 Bytes is preferred), as it supports the size of the FRS and causes less fragmentation. This can be an issue if having converted from FAT16/FAT32 to NTFS.
- WinNT4: Run this command:
dir /a $mft
- Win2k+: Start the Disk Defragmenter and analyze the disk and View Report.
Note the utility fsutil can also be used to change this value:[HKEY_LOCAL_MACHINE \System \CurrentControlSet \Control \FileSystem]
NtfsMftZoneReservation=2 (1=12,5%, 2=25%, 3=37,5%, 4=50%, Default=1)
Note it is only important to change this parameter if the MFT-File is becoming larger than the already reserved space (Mainly if having lots of small files on a small partition<4 GB).
Note this parameter affects all NTFS volumes in the system.
Note it is recommended when changing this parameter to reformat the NTFS partitions, to make the change completely effective.
Note the space reserved for the MFT will be used for normal files if no free space is found else where on the drive.
More Info MS KB174619
More Info MS KB227350fsutil behavior set mftzone 1
The following values can be used: 1 = 12.5 %(default), 2 = 25%, 3 = 37.5%, 4 = 50%
More Info MS KB303079
More Info MS KB315688
More Info MS KB320397
Credits littleharbor.com
Leave a Reply