Chapter 3 INSTALLATION OF OPERATING SYSTEMS
Chapter 3 INSTALLATION OF OPERATING SYSTEMS
INSTALLATION
OF
OPERATING SYSTEMS
2
Outline
The tracks are the concentric areas written on both sides of a platter.
There are millions of tracks and each has around 60 to 120 sectors.
11
3.2.1 Low-Level Format (4)
A cylinder refers to all the data located on the same track of different
platters (i.e. vertically on top of each other) as this forms a "cylinder" of
data in space.
13
3.2.1 Low-Level Format (6)
Scans the disk for tracks and sectors marked as bad during the low
level format
Read only step
Checks sector header
Notes these tracks as bad
"Quick Format" skips this step
Prepares each volume (partition) to hold data
17
3.3 Hard Disk Partition (1)
Dynamic Disks
Proprietary Microsoft style
19
Basic Disks
• A dynamic disk doesn’t use partitions but rather volumes as discrete units
of space. Because you are creating volumes instead of partitions, you
don’t have the four-partition limitation of basic disks.
• Added capabilities
– Spanned volumes
– RAID 0, 1, 5 on Windows Server products
– RAID 0 on Windows desktop products
23
Dynamic Disks
• One hard drive can be logically divided into more than one partition
e.g., one partition has Windows 2000, one partition has data, one
partition has Linux .
• Every disk must be partitioned. Partitions divide up the disk, and each
segment acts as a complete disk by itself.
• Every partition has an associated file system.
26
Partitions and Blocks
• The second block on the partition is called the superblock. It contains all
the information about the partition, including
• Size of the partition
• Physical address of the first data block
• Number and list of free blocks
• Info about the file system
• When the partition was last modified.
• The remaining blocks are data blocks.
28
3.4 Installing Windows Operating System
A jumper pin is a rectangular connector that creates a circuit between two pins.
Because each drive has a built-in controller that makes it act like its own boss,
the purpose of designating a master is to specify who the boss of that chain is —
the controller that will be responsible for communicating with the processor.
When setting up a multi-drive system, you have two drives, each with a controller
that can potentially send and receive signals to and from the processor.
To be clear, one of the drives is designated as the master. The master drive
receives all signals from the processor and sends back any data on behalf of
both drives. The other drive is designated as the slave. The slave drive passes any
information it wants to send to the processor up to the master, which then
forwards that information to the processor.
68
3.6 File Systems (1)
The file system dictates how information is organized on the disk. For
example, the file system determines how large the allocation unit, or
storage unit, of a file is. If you create a 12K file, how much space is that file
really using — 12K, 16K, or 32K? Such organizational issues are what the file
system deals with.
There are several types of file systems:
FAT
FAT 32
NTFS
NTFS 5.0
69
3.6 File Systems (2)
FAT32
A benefit of FAT32 over FAT system was that the maximum partition size
was increased from 2GB to 2 terabytes (TB).
Although FAT32 has the capability to have partitions of 2 TB in size,
Microsoft has limited the size of FAT32 partitions in Windows 2000/XP
operating systems to 32GB.
The other major benefit to FAT32 is that it dramatically decreases the
cluster size to make better use of disk space.
71
3.6 File Systems (4)
FAT32
One of the shortfalls of FAT32 is that MS-DOS, Windows 3.1, the original
release of Windows 95, and Windows NT 4.0 do not support it. This means
that only Windows 95 OSR2, Windows 98, Windows ME, and Windows
2000/XP/2003 can access data on a FAT32 partition, which is great
considering these are the popular operating systems today.
NTFS
Starting with Windows NT, Microsoft implemented a new file system called
New Technology File System (NTFS). NTFS makes better use of the space
available on a particular disk by using 512 bytes as the cluster size, which is
the same size as a sector! This means that you are wasting even less space
on NTFS file system than on a FAT32 file system.
NTFS
You could configure permissions that controlled who could access what
files.
You could also take advantage of features such as compression and
auditing.
One of the biggest complaints with the original version of NTFS is that it had
no way to limit how much disk space a user could use. As a result, users
could waste gigabytes of hard disk space on the server, and the
administrator could not stop the user unless a third-party program was
purchased.
74
3.6 File Systems (7)
NTFS 5.0
This newer version of NTFS has a few extra features over original
implementations of NTFS, one of which has been long overdue disk
allocations. Disk allocations allow the system’s administrator to choose the
amount of disk space that each user is allowed to use by placing a limit on
the disk. For example, when managing the home directories, you can
ensure that Bob is not allowed to use more than 500MB of disk space.
Another feature of NTFS 5.0 is the Encrypting File System (EFS). EFS uses
public key/private key technology to encrypt a file stored on the hard
drive.
75
3.6 File Systems (7)
NTFS 5.0
When a file or folder is encrypted with EFS, only the person who created
the file or the recovery agent can open the file. When using EFS, even if
another user has permission to view the file, he or she will be unable to do
so because the file is encrypted.
To summarize, the NTFS file system offers the following features over FAT and
FAT32:
The capability to secure the resource through permissions
The capability to secure files through encryption
The capability to enable auditing to monitor who accesses the files and folders
The ability to compress the contents of a file or folder
76
3.6 File Systems (8)
End of Chapter 3