Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

Understanding Hard Drive Partitions & File Systems: Primary & Extended, FAT16, FAT32, NTFS, Study notes of Introduction to Business Management

An overview of hard drive partitions and file systems, including the concept of partitions, primary and extended partitions, fat16, fat32, and ntfs. Learn about the role of partitions in organizing data on a hard drive, the differences between primary and extended partitions, and the features and limitations of various file systems. Understand the importance of clusters and cluster sizes in managing file storage, and explore the implications of cluster waste.

Typology: Study notes

Pre 2010

Uploaded on 08/07/2009

koofers-user-qk6
koofers-user-qk6 🇺🇸

9 documents

1 / 5

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
Partitions and File Systems
November 9 (Day); November 8 (Night)
Hard Drive Partitions:
oIt is too difficult to store data on the basis of those cylinders, heads, and sectors that
we talked about during the last lecture (p. 203).
oA partition is a chunk of a hard drive used to structure and organize data on a hard
drive (p. 203).
oThe concept of partitions was originally developed to allow multiple operating
systems, each with different file systems, to co-exist on a single hard drive.
oToday, partitions are used to divide a single drive into multiple volumes used by the
same operating system.
oA computer learns about its partitions during booting. The boot sector is a specific
place on the hard drive that stores all partition information. It consists of the
following information (p. 204):
The Master Boot Record (MBR) which is a small program that assists the
operating system in finding the correct partition.
The partition table contains entries for up to four partitions. It contains
information such as the beginning and ending sector on the hard drive
and how many sectors are used by the partition.
Types of Partitions:
oThere are two types of partitions: primary and extended.
oThe primary partition is the more common type (p. 204).
The primary partition is bootable.
The operating system is installed on the primary partition.
Windows assigns the drive letter C: to the primary partition.
Generally, there can only be one primary partition.
oExtended partitions are optional (p. 204).
An extended partition is not bootable.
Extended partitions can not be assigned drive letters directly.
pf3
pf4
pf5

Partial preview of the text

Download Understanding Hard Drive Partitions & File Systems: Primary & Extended, FAT16, FAT32, NTFS and more Study notes Introduction to Business Management in PDF only on Docsity!

Partitions and File Systems November 9 (Day); November 8 (Night)  Hard Drive Partitions: o It is too difficult to store data on the basis of those cylinders, heads, and sectors that we talked about during the last lecture (p. 203).

o A partition is a chunk of a hard drive used to structure and organize data on a hard

drive (p. 203). o The concept of partitions was originally developed to allow multiple operating systems, each with different file systems, to co-exist on a single hard drive. o Today, partitions are used to divide a single drive into multiple volumes used by the same operating system.

o A computer learns about its partitions during booting. The boot sector is a specific

place on the hard drive that stores all partition information. It consists of the following information (p. 204):

 The Master Boot Record (MBR) which is a small program that assists the

operating system in finding the correct partition.

 The partition table contains entries for up to four partitions. It contains

information such as the beginning and ending sector on the hard drive and how many sectors are used by the partition.  Types of Partitions: o There are two types of partitions: primary and extended.

o The primary partition is the more common type (p. 204).

 The primary partition is bootable.  The operating system is installed on the primary partition.  Windows assigns the drive letter C: to the primary partition.  Generally, there can only be one primary partition.

o Extended partitions are optional (p. 204).

 An extended partition is not bootable.  Extended partitions can not be assigned drive letters directly.

 Extended partitions are divided into logical drives. Logical drives are

assigned drive letters.  An extended partition can be broken into 23 logical drives (D: - Z:). Each appearing as separate drive letter to the operating system. o Partitioning:

 Partitioning is the process of creating partitions. You must have a

partition on the hard drive before you install an operating system (p. 216).

 FDISK is the manual partitioning program used the most often. FDISK

is a small command-line based program that can be found on most Windows boot disk (p. 216).  File Systems:

o A file system defines the name of the files and keeps track of which sector stores

which file. It also allows you to create folders so that you can organize your files. In short, the file system helps you organize your data (p. 205). o Clusters:  Rather than storing information about each sector on a hard drive, the file system stores information about groups of sectors known as clusters. Cluster Size = # of Sectors * 512 bytes OR Cluster Size = # of Sectors * .5 KB  The smallest space that one file can occupy is one cluster. For example, if a file is even one bit larger than the size of one cluster, the file will take up two clusters. o Types of File Systems:

 The File Allocation Table system uses two tables to store information

about clusters: FAT Directory, FAT Table.  The FAT Directory stores information about each file.  The FAT Table stores information about each cluster on the disk.

 Remember that the FAT table is loaded into memory at bootup. If we dedicated 128 bytes, for instance, to each cluster on our hard drive, the FAT table will become very large and overuse our memory.  If we are limited in the number of clusters that we can use in our FAT table, how might we increase the capacity of our hard drive?  We increase the size of clusters, so that more data is stored for each entry in the FAT table.  Cluster Waste:  Wasted space is the problem of increasing the size of your clusters. To demonstrate this point, pretend that you have a file that is 10 KB in size. o If you have a cluster size of 32 KB, then you will waste 22 KB of space to store this file. o If you have a cluster size of 16 KB, then you will waste only 6 KB of space to store this file.  Because some files waste a little bit of a cluster and some files waste a lot of a cluster, each file is assumed to waste one-half of a cluster.  Here’s the calculation: Cluster Waste = # of Files * (Size of cluster * .5)  Pretend that you have 5000 files on your hard drive and are using cluster sizes of 16 KB. Cluster Waste = 5000 * (16 KB * .5) = 5000 * (8 KB) = 40,000 KB

 Pretend that you have 5000 files on your hard drive and are using cluster sizes of 32 KB. Cluster Waste = 5000 * (32 KB * .5) = 5000 * (16 KB) = 80,000 KB