+ All Categories
Home > Documents > T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S...

T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S...

Date post: 15-Apr-2020
Category:
Upload: others
View: 0 times
Download: 0 times
Share this document with a friend
42
DPW T B 1 4 3 I N T R O T O P C S Data & System Management UNIT 5
Transcript
Page 1: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

Data & System Management

UNIT 5

Page 2: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

Disk Drives

• Hard disk drive - Sealed case containing rotating disks and read/write heads

• All disks store data in basically the same way

• Disks start out as blank disks of magnetically coated metal platters

Page 3: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

Disk Management

• Before you can store data on a new disk, you must perform the following tasks – Create partitions on a basic disk or create

volumes on a dynamic disk– Format the disk with a file system

(FAT,FAT32,NTFS)

• A disk must be formatted before data can be written to the disk

Page 4: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

Partitions

• A new hard drive must first be divided in the proper size segments required by the operating system called partitions

• A partition is a physical section of a hard drive that creates a logical volume

• Each physical drive contains a partition table that shows the starting and ending address of each partition

Page 5: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

• A jump instruction• Name & versions of the OS files• Data structure which describes the

physical characteristics of the partition• Data structure which describes the

location of the file index• The bootstrap code

Boot Sector Information

Page 6: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

Formatting Disks/Drives

• Creates tracks and sectors by writing a series of F6s, (which effectively erases any data on the disk), and sector address marks to identify the beginning sector on a track

• Creates the master boot record

• Creates 2 copies of the file indexing format

• Creates the root directory

Page 7: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

Formatting Hard Drives• Hard drives are formatted twice• Low-level format - physically formats the

hard drive and creates tracks and sectors

• Operating system format -creates the boot record, File index and root directory on the disk

• Each partition on a drive has its own boot record, two copies of its file index and a root directory

Page 8: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

File Systems• The function of a file system is to map

data so it may be retrieved.• A file system must know the physical

location of data on the disk to be able to retrieve it

• Common file systems• FAT 16 partitions– up to 4 GB• Fat 32 partitions - up to 2 TB• NTFS partitions - up to 16 EB

Page 9: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

FAT16 File System• Features

– partitions can be no larger than 4 GB (2 GB for DOS)

– Can set permissions only on folders shared across network

– Cannot set permissions on files available locally

• FAT16 Benefits

– Compatible with most other operating systems

Page 10: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

FAT16 Disadvantages• Name must begin with letter or number

• Name cannot contain "/\:;|=,^*?

• Name cannot contain any spaces

• Uses 8.3 naming convention

• Does not support long file names

• Device names are reserved

• Root directory can only contain 512 entries

Page 11: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

FAT32 Advantages• FAT32 can support partitions up to 2 TB• It is more efficient in terms of allocating

sectors to clusters• The BIOS Parameter Block partition is larger• The boot sector stores a count of free clusters

on the partition• Does not store root directory in a set area• Uses an ordinary cluster chain• Extended partitions can hold up to 32 logical

volumes

Page 12: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

FAT32 Disadvantages• Not supported by all operating systems

• Only Primary partitions are bootable

• Must use FAT16 or VFAT to format shared partitions in a mixed operating system environment

• Only Windows 95 OSR2, Windows 98, ME, XP and 2000 support FAT32

Page 13: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

NTFS File System• Can support partition sizes up to 16 EB

• Organizes the data on disk with a relational database

• Everything on the volume is considered an object

• Every file stored on the volume is represented in a record

• Properties called streams can be added to the objects

Page 14: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

NTFS Advantages• Root directory can contain unlimited entries• Supports File level security• Supports File level encryption• Supports Disk quotas• Provides POSIX support• Supports individual file compression - every file

except NTLDR can be compressed• Allows auditing• Supports transaction logging• Tracks ownership• Can store files in non-contiguous memory

Page 15: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

NTFS Disadvantages

• Not compatible with other operating systems

• No back door access - good for security, bad for administrators

• Requires space and processing for the transaction log

Page 16: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

Partitions

• Partitions are assigned either a volume name or a drive letter

• Primary partitions can be made active partitions but can only be assigned a single drive letter or volume name

• Extended partitions cannot be made active but can be divided up into several logical drives with each assigned a drive letter

• There can be a maximum of four partitions on a physical hard drive (4 primary or 3 primary and 1 extended)

Page 17: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

• 64-byte data structure

• Located in first sector of the hard disk

• Contains info about disk partitions

• Can define up to 4 partitions per disk

• Partition Table Entries contain info on

–Whether the partition is a system partition

–Where the disks begins and ends

–Total number of sectors used

–The partition’s file system

Partition Table

Page 18: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

Primary Partitions

• Only a primary partition can be marked as the active partition

• The active partition is where the hardware looks for the boot files to start the operating system

• Multiple primary partitions allow you to isolate different operating systems or types of data

Page 19: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

Extended Partitions

• There can be only one extended partition on a hard disk

• Unlike primary partitions, you don't format extended partitions or assign drive letters to them

• You divide extended partitions into segments. Each segment is a logical drive where you assign a drive letter to each logical drive and format it with a file system

Page 20: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

Primary and Extended PartitionsPrimary Partitions

F:F:

E:E:

D:D:

C:C:

G:

E:E:

D:D:

C:C:

PhysicalDrive

ExtendedPartitionwith LogicalDrives

PrimaryPartitions

OR

F:

H:

Page 21: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

Disk Properties

Page 22: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

Fragmentation• After a hard drive has been in use for

awhile, files tend to be written in a non-contiguous format which means that the clusters a file is written to are not in sequential order

• Slows down file access• Hard to recover file if becomes corrupt• DEFRAG is a utility corrects the

problem and optimizes the disk

Page 23: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

Fragmentation Tool

Page 24: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

Clusters• Lost Clusters are clusters that no file

points to and occur as a result of the mapping in FAT becoming corrupted

• Cross-Linked Clusters are cluster that more than one file points to that occur as a result of the mapping in FAT becoming corrupted

• SCANDISK and similar programs will repair both of these problems

Page 25: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

NTFS Disk Compression• Using software to increase the amount of disk

space– Usually doubles the space

• Stores entire contents of drive as a single file• Uses a mathematical algorithm to store files

in a more compact format• Files decompress “on-the-fly”• Slows down system performance

Page 26: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

NTFS Encryption

• Folders are encrypted transparently• Unencrypted on the fly• If you lose the user login or forget the

password, you cannot open your files• Use encryption only for important

information

Page 27: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

Disk Caching

• A disk cache is a temporary storage area in RAM for data being read from or written to a hard drive

• Hardware cache is contained in RAM chips built right on the disk controller card

• Software cache is stored on the hard drive and loaded into memory as a terminate-and-stay-resident (TSR) program

Page 28: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

Disk Cloning

• Used to make a bit by bit copy of the entire hard disk or a single partition

• Independent of the operating or file system

• Software like Norton’s ghost or Drive Image

• Makes deploying identical workstations much easier

• Can also be used to backup computers

Page 29: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

System Backups• All users can backup a file or directory if

they have read permission• What Should be Backed Up? Always

– Critical files and folders– System configuration files

• Periodically– Files that rarely change

• Never– Temporary files

Page 30: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

Backup Media

• DAT – Digital Audio Tapes

• CDs and DVDs• DLT tapes

Page 31: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

Types of Backups• Full - backs up all selected files and

resets the archive bit• Copy - backs up all selected files but

does not reset the archive bit• Incremental - backs up all the selected

files that have changed and resets the archive bit

• Differential - backs up all the selected files that have changed but does not reset the archive bit

Page 32: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

Backup Schedule & Tape Rotation

• Typical Backup Schedule– Daily Incremental– Weekly Full– Month-End Full

• Typical tape rotation– Store daily tapes for 3 weeks on site than

reuse– Store weekly tapes for 6 months on site

than reuse– Store monthly tapes off-site for 2 years

than return and reuse

Page 33: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

Backup Terminology• Backup Sets - group of files and folders

from a single volume from a single backup operation

• Catalogs - lists of backup sets or members– Tape catalog - contains list of all backup

sets on a tape– Backup Set Catalog - contains list of files

and folders in the backup set• Backup Log - record of the entire

backup operation

Page 34: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

Driver Signing

• Signed drivers have been tested by Microsoft to make sure they work properly

Page 35: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

Windows Update

Page 36: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

Virtual Memory

Page 37: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

System Restore

• Built in capability of windows that creates a restore point every time you install a new device or application

Page 38: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

Restore CDs

• Restore CDs – put the system back to the day you bought it. All data and programs added since then will be lost but can be restored from backups

Page 39: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

Disk Images

• Programs like image for windows and ghost do bit copies of the hard drive or partition and make restoring easy

Page 40: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

Recommended Maintenance

• Do regular backups• Use antivirus and anti-spyware

software• Periodically defrag the hard disks• Don’t smoke near your computer• Use a dehumidifier in damp areas• Use caution when moving the

computer if it is running

Page 41: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

Data Transfer Standards

Page 42: T 1 4 3 I N T O Data & System Management T O P C S Unit 5.pdfDPW T B 1 4 3 I N T R O T O P C S Partitions • A new hard drive must first be divided in the proper size segments required

DPW

TB143

INTRO

TO

PCS

Digital Audio

• Typical sampling rate is 44.1 or 192.4 KHz which means that it is being sampled at 44,100 or 192,400 samples per second

• Encoded using a codec into 16 bits of data

• MP3 encoding can compress the data to approximately a 10:1 ratio but there will be a loss of quality


Recommended