ch10_HDDImplementation Flashcards
What is a basic disk?
One that uses the MBR or GPT scheme
Explain the layout of a MBR?
The first sector contains the MBR
MBR holds partition tables
Max 4 partitions
Max 2.2 TB
What is an extendable partition
Non-bootable, but can hold logical partitions. These do not receive a drive letter
What is a Logical Partition
Logical partitions are found inside a extended partition and will receive a drive letter
What is a dynamic disk
Instead of partitions they hold volumes. Volumes can span many disks, and have many features such as RAID
What is GPtT
GUID (Global Unique Identifier) Parition Table
Has a max of 128 partitions, but no limit on the size of the partitions
A header is placed at the front and back as a backup and is broken up into sectors called LBA
What is the purpose of a Swap partition
Used in a similar fashion to RAM. This is used in Linux/unix systems. Windows uses it’s own page file system.
Outline the FAT(16) file system
Name: File Allocation Table
- Each sector stores 512 bytes organized like a spreadsheet with one column holding a hexadecimal number, and the right column showing the status
- Bad sector = FFF7
- Max size of 32 MB
- Max size of 2 GB with CLUSTERING
How does the FAT system work
- Windows looks for 0000 (good)
- FFFF marks the end of file
- The folder name and cluster number is added to the folder list.
What is clustering
In a FAT system the sectors are grouped together
Outline FAT32 System
Clusters = 4 KB 32 bits long Max 2 TB parition Max file size = 4 GB Good for flash drives
Outline the NTFS file system
New technology file system
Uses a master file table in the middle of the drive to avoid corruption.
Security feature: can control access to files
Other Features: compression and encryption
Max partition size = 16 TB (Dynamic disk) or 2 TB (basic)
Outline exFAT/FAT64
File support up to 16 TB Max file size: 16 EB Max patition size 64 zettabytes (theoretical) Recomended partition: 512 GB Use on flash drives Doesn't have features NTFS does.
Outline ext4 file system
Fourth extended file system Used in linux Volumes max of 1 exabyte Files max = 16 TB Backwards compatible, can also read/write to NTFS
What is a good standard to follow for using FAT or FAT32
If a disk is less than 4 GB use either of those