Maintenance Chapter 6 and 7
Maintenance Chapter 6 and 7
1
Chapter 6
Storage Devices
2
Objective
3
Storage Devices
4
Floppy Drive
• Floppy disks are made of flexible plastic coated with a magnetic material,
and are enclosed in a hard plastic case.
• A Historical Storage Medium
• Two version of floppy drives
• 3 1/2 inch: -can store 1.44MB of data
• 5 1/4 inch: -can store 1.2MB of data
5
Hard Disk Drive
• Hard disk is one of the core components of any computers and it can
contain huge amount of data.
• The hard drive consists of one or more hard drive platters (hard
disks) inside of an air sealed casing to protect it from dust.
• Because the hard disk drive is expected to retain data until deliberately
erased or overwritten, the hard drive is used to store crucial programming
and data.
6
Hard Disk Drive
• Form Factor
• Hard disk drives are manufactured in two standardized form factors,
2.5-inch and 3.5-inch. You’ll see both form factors in desktops and
servers; most laptops use the 2.5-inch form factor.
7
Basic Components of hard disk
Read/Write head
Read/Write actuator arm
• Integrated electronics.
8
• Platters are rigid disks made of metal or plastic.
• Both sides of each platter are covered with an extremely thin coating of
iron oxide or other magnetizable material.
• The platters are mounted on a central axle or spindle, which rotates all the
platters at the same speed.
• Read/write heads are mounted on head arms that extend over both top
and bottom surfaces of each disk.
• The head actuator is the device used to position the head arms to
different tracks on the surface of the platter.
9
Tracks and Sectors
10
Tracks and Sectors
11
Hard Drive Interface
PATA SATA
12
Hard Drive Interface
SATAe
13
Hard Drive Interface
• PATA (parallel ATA) is the older IDE type, which uses a 40-pin cable
that connects the IDE hard drive to an adapter or the motherboard
and transfers 16 bits of data at a time.
14
Hard Drive Interface
15
Hard Drive Interface
16
How Is Data Stored and Retrieved?
• When a computer saves data, it sends the data to the hard disk as a
series of bits( 0s and 1s).
• As the disk receives the bits, it uses the read/write heads to magnetically
record or “write” the bits as a magnetic charge on the oxide coating of a
disk platter.
• When the computer requests data stored on the disk, the platters rotate
and the read/write heads move back and forth to the specified data areas.
• The read/write heads read the data by determining the magnetic field of
each bit, positive or negative, and then reply that information back to the
computer.
17
How Is Data Stored and Retrieved?
18
Common Problem of HDD: Head Crashes
• Normally, the heads only contact the surface when the drive is either
starting up or stopping.
• It is possible that the heads can make contact with the media
• Head crash is a condition where the heads contact the surface of the disk
while it is at operational speed.
19
Common Problem of HDD: Bad Sector
20
SSD (Solid State Drive )
22
SSD vs HDD
• .
23
Hard Drive Preparation
• Once a hard drive is installed and configured properly, and the hard drive
type is entered into the Setup program, the drive must be prepared to
accept data.
• The two steps of hard drive preparation are as follows:
• Partition
• High-level format
• Partitioning the hard drive allows a drive letter to be assigned to one or more
parts of the hard drive. High-level formatting prepares the drive for use for a
particular operating system.
• This allows the drive to accept data from the operating system. For today’s
computers, a drive cannot be used until it has been partitioned and high-level
formatted; thus technicians should be very familiar with these steps.
24
Partitioning
• The first step in preparing a hard drive for use is partitioning. Partitioning a
hard drive divides the drive so the computer system sees the hard drive as
more than one drive.
• Windows NT and higher versions partitions can be set up during the
operating system installation process.
• Also use Disk Managment program that is available after the operating
system is installed, or by using the diskpart utility from the command line.
• Partitioning provides advantages that include the following:
• Dividing a hard drive into separate subunits that are then assigned
drive letters such as C: or D: by the operating system
• Organizing the drive to separate multiple operating systems, and data
• Providing data security by placing data in a different partition to allow
ease of backup as well as protection
25
Partitioning
• The type of partition and how big the partition can be depends on the file system
being used. A file system defines how data is stored on a drive.
• The most common file systems are FAT16, FAT32, and NTFS. The file system
that can be used depends on what operating system is installed.
26
Partitioning
Partitioning Types
• Partitions are defined as primary and extended. If there is only one hard drive
installed in a system and the entire hard drive is one partition, it is the primary
partition. The primary partition on the first detected hard drive is assigned the
drive letter C:.
• If the drive is divided so only part of the drive is the primary partition, the rest of
the cylinders can be designated as the extended partition.
• An extended partition allows a drive to be further divided into logical drives.
• A logical drive is sometimes called a volume.
• A volume is assigned a drive letter and can include a logical drive as well as
removable media such as a CD, Flash Drive.
• There can only be one extended partition per drive. A single hard drive can be
divided into a maximum of four primary partitions.
27
Partitioning
• Physically separate data so that it is easy to find files and back up data.
28
Partitioning
Primary partition
• A primary partition may contain an operating system along with any
number of data files (for example, program files or user files). Before an
OS is installed,
• The primary partition must be logically formatted with a file system
compatible to the OS.
• If you have multiple primary partitions on your hard disk, only one primary
partition may be visible and active at a time.
• The active partition is the partition from which an OS is booted at
computer startup.
• Primary partitions other than the active partition are hidden, preventing
their data from being accessed.
• Thus, the data in a primary partition can be accessed (for all practical
purposes) only by the OS installed on that partition.
29
Partitioning
Extended partition
• The extended partition was invented as a way of getting around the
arbitrary four-partition limit.
• An extended partition does not directly hold data. You must create logical
partitions within the extended partition in order to store data.
• Once created, logical partitions must be logically formatted, but each can
use a different file system.
30
Partitioning
Logical partition
• Logical partitions can exist only within an extended partition and are
meant to contain only data files and OSs that can be booted from a
logical partition (OS/2, Linux, and Windows NT)
31
32
Partitioning
• Remember that a partition is a contiguous section of storage space that
functions as if it is a separate drive.
• The first hard drive in a computer system must have a primary partition, but it
does not require an extended partition.
• If the drive has an extended partition, it can be further subdivided into logical
drives that appear as separate hard drives to the computer system.
• Logical drives created in the extended partition are assigned drive letters (D:, E)
33
Partitioning
• When a hard drive is first installed and partitioned, the outermost track on the
platter (cylinder 0, head 0, and sector 1) is reserved for the partition table.
• The partition table holds information about the types of partitions created and in
what cylinders these partitions reside.
• The partition table is part of the MBR (master boot record) that contains a
program that reads the partition table, looks for the primary partition marked as
active, and goes to that partition to boot the system.
34
MBR vs GPT
• Windows supports three different partitioning methods: the older master boot
record (MBR) partitioning scheme, Windows’ proprietary dynamic storage
partitioning scheme, and the GUID partition table (GPT).
Master Boot Record
• The first sector of an MBR hard drive contains the master boot record (MBR),
code that informs the system about installed operating systems.
• While your computer boots up, BIOS looks at the first sector of your hard drive
for instructions. Without this bit of code, your OS will never load.
35
MBR vs GPT
• After the MBR locates the appropriate partition, the partition boot sector loads
the OS on that partition. The partition boot sector stores information important to
its partition, such as the location of the OS boot files.
37
Managing Partitions
• Shrinking volume
• Extending volume
• Creating partition
• Deleting volume
• Hiding volume
38
• When you create multiple primary partitions to hold different operating
systems, you must tell the computer which primary partition to boot from.
• The primary partition from which the computer boots is called the active
partition.
• WARNING! Before you make a primary partition active, make sure that it
is a bootable partition.
39
Optical Disks
40
CD-ROM
• CD-ROM drives have speeds ranging from 1x all the way up to 72x,
meaning it reads the CD roughly 72 times faster than the 1x version.
41
Top CD-ROM Drive Problems and solutions
Make sure you have tested more than one CD in the disc drive it may
be one CD that is bad or dirty.
Check Device Manager: Within Device Manager verify that the
CDROM has no exclamation marks or red Xs
Corruption in Windows: Try testing the CDROM in Safe Mode.
42
End of Chapter 6
43
Chapter 7
Bus and Cards
44
Objective
After completing this chapter you will be able to
• Define Bus
Network card
45
7.1 Buses
Bus is a pathways or set of pathways that allows data and signals to travel
between components on the motherboard.
E.g., a bus enables a computer processor to communicate with
the memory
memory
46
7.1 Buses
• The "first" bus is the system bus, which connects the CPU with RAM.
In older designs it was a local bus. In newer designs this bus is
called the Front Side Bus (FSB).
47
• A bus connects various components of a computer using a number of different
wires, which usually appear in the form of tracks on a Printed Circuit Board
(PCB). These wires can be classified into four functional groups: power,
address, data and control.
48
• Today all computers utilize two bus types, an internal bus or local bus
and an external bus, also called the expansion bus.
49
Characteristics of Bus
• A 32-wire ribbon cable can transmit 32 bits in parallel. The term "width" is
used to refer to the number of bits that a bus can transmit at once.
50
• It is possible to find the maximum transfer speed (Throughput (bps or
MB/s)) of the bus, the amount of data which it can transport per unit of
time, by multiplying its width by its frequency. A bus with awidth of 16 bits
and a frequency of 133 MHz, therefore, has a transfer speed equal to:
= 16 bits × 133*106 Hz
51
Types of bus and its architecture
Data bus - carries the data between the processor and other components.
The data bus is bidirectional. Data is passed in parallel or serial manner.
52
The primary buses
• The internal bus (sometimes called the Front side bus, or FSB for
short). The internal bus allows the processor to communicate with the
system's central memory (the RAM).
53
FSB (Front Side Bus)
• FSB is also known as the Processor Bus or System Bus and connects
the CPU (chipset) with the main memory and L2 cache. The FSB can
range from speeds of 66 MHz, 133 MHz, 100 MHz, 266 MHz, 400
MHz, and up.
• The FSB speed can be set either using the system BIOS or with jumpers
located on the computer motherboard. While most motherboards allow
you to set the FSB to any setting, ensure that the FSB is properly set
unless you plan to overclock the computer.
• Keep in mind that improper settings may cause issues such as hardware
lockups, data corruption, or other errors may arise with older hardware.
54
55
Chipset
– ISA
57
Types of Expansion Buses
The PCI bus connects PCI slots to the Southbridge. On most systems, the
speed of the PCI bus is 33 MHz.
58
Types of Expansion Buses
The data transmitted over PCI-Express is sent over wires called lanes in
full duplex mode (both directions at the same time).
59
Types of Expansion Buses
USB 1.x is an external bus standard that supports data transfer rates of 12
Mbps
As of 2012, USB 3.0 also known as Super Speed USB is the latest version
of the USB protocol. Most new computers feature USB 3.0 ports built-in,
offering data transfer speeds of up to 5 Gbps.
60
61
ATA (Advanced Technology Attachment)
ATA is a standard interface for connecting storage devices such as hard drives and CD-
ROM drives to a computer motherboard.
It was originally developed in the late 1980s by Western Digital and Compaq.
ATA is also known as Integrated Drive Electronics (IDE) or Parallel ATA (PATA). ATA uses
a 40-pin connector to connect the storage device to the motherboard. The interface
supports data transfer rates of up to 133 megabytes per second.
ATA was widely used in the 1990s and early 2000s, but has since been replaced by
newer interfaces such as Serial ATA (SATA) and NVMe (Non-Volatile Memory Express).
62
Types of ATA
2. Serial ATA (SATA): This is a newer ATA interface that uses a serial
connection to transfer data between the storage device and the computer.
SATA is faster and more efficient than PATA.
5. ATA/ATAPI-9: This is the latest version of ATA, which includes support for
even faster transfer rates and additional features such as SATA III (also
known as SATA 6G). 63
Standards of ATA
64
Comparison Table Between SATA and PATA
Expansion Cards (Adapter cards) are printed circuit boards which can be
inserted into expansion slots on a computer's motherboard to add functionality
to a computer system.
Common types:
– Sound
– Video (VGA)
– Network (NIC)
– Modem
– Bluetooth
66
The video card
It is the component responsible for producing the visual output from your
computer.
The video card is the piece of hardware that takes that output and tells the
monitor which of the dots on the screen to light up (and in what color) to allow
you to see it.
Video cards today are much more like coprocessors; they have their own
intelligence and do a lot of processing that would otherwise have to be done by
the system processor.
67
The video card ……
The video card in your system plays a significant role in the following important
aspects of your computer system:
Performance
Software Support
Reliability and Stability
Comfort and Ergonomics
68
The sound card
Sound cards enable the computer to output sound through speakers connected to the
board, to record sound input from a microphone connected to the computer, and
manipulate sound stored on a disk.
Sound cards use two basic methods to translate digital data into analog sounds:
1. FM Synthesis - mimics different musical instruments according to built-in formulas.
2. Wavetable Synthesis - relies on recordings of actual instruments to produce sound.
• Wavetable synthesis produces more accurate sound, but is also more expensive.
69
Network card
70
71