IT-212, How Computers Work Data Storage

Size: px
Start display at page:

Download "IT-212, How Computers Work Data Storage"

Transcription

1 IT-212, How Computers Work Data Storage Adjunct Professor J Masiyowski Electrical and Computer Engineering Spring March 2003 IT 212 Part 4 : Data Storage (C10-14) 1

2 Course Outline Part 1: Boot-up Process Introduction Know the Hardware How Disk Boot Works Operating System s Role Part 2: How Software Works Programming Languages Windows Principles Applications Principles Part 3: Microchips Transistors RAM Microprocessors Part 4: Data Storage Disk Drives Optical & Removable Speed/Storage Part 5: I/O Devices Busses & Ports Keyboard & Displays Pointing Devices Scanners Part 6: Multimedia Sound Video Virtual Reality Part 7: How Internet Works LANs PC Connections Wireless & WWW Part 8: Printers Basic (Impact, LaserJets) Color (Inkjets) In-Class Exercise Apply How Computers Work to a practical situation 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 2

3 Lecture Agenda Chapter 10: How Disk Storage Works? History, concept of operations: electromagnetism Chapter 11: How Disk Drives Works principles of operation, floppy & hard disk Chapter 12: How Drives Increase Speed & Storage disk & file compression, disk defragmentation Chapter 13: How Optical Storage Works CD & DVD drives (Read Only, Write Once, R/W) Chapter 14: How Removable Storage Works Zip, Jaz, QIC tape Storage Device Demonstration 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 3

4 History (1) 1940 Vacuum tubes used for storage 1950 Tape drives replaced punch cards 1956 IBM developed first hard disk Winchester IBM introduced floppy disk (8 ) 1980 Sony introduced 3.5 Floppy, 720KB capacity Why is Persistent Data Storage Important? 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 4

5 History (2) 1982 Drivetec announced 3.33MB (unformatted) 5.25 drive 1983 Philips and Sony developed CD-ROM as computer storage device 1992 Cost of 200MB drive dropped below $200 (less than $1 per megabyte) 1998 DVD-RAM drive 17GB (two movies) ~ 2001 affordable solid state storage devices 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 5

6 Introduction Focusing on non-volatile storage when the lights go out do you know what your data is doing? Storage types Online available to computer at all times Offline physically removed from computer Why is Data Storage so Important? 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 6

7 External Non-volatile Media (1) Punch card Paper and Mylar Tapes with punched holes Magnetic Tape Large capacity Must be accessed sequentially hence slow Requires manual loading onto tape drive 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 7

8 External Non-volatile Media (2) Magnetic Cylinders Origin of cylinder/sector/track nomenclature on disk drives Automatically retrieved from jukebox Military airborne applications since more vibration resistant than disks Magnetic storage useful on military A/C since it is not susceptible to EMP 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 8

9 Internal Non-volatile Media Core memories (Old Days) Ferrite (magnetic oxide) doughnuts Small capacity, one bit per bead Storage by changing magnetic orientation Random Access Non-volatile Used in Space Shuttle At least to 1980s Radiation and vibration hard sense Flash Electronic Memory (Today!) Row adx Column adx 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 9

10 Hard/Soft Drives Non-volatile Random Access Where does hard come from? Hard drives: rigid aluminum alloy platter with magnetic coating Floppy: flexible mylar substrate Random versus Sequential Access 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 10

11 Next Generation Storage Device Solid State (Electronic Memory - Flash) High storage capacity fast data transfer rates (/w USB 2.0) increased flexibility portability of a floppy, with enhanced capacity Can provide for File/Drive Compression password protection for data security write protection prevents accidental erasure performance: ~ 900K byes/s 480M bps Data retention: ~ 10 years Write cycles: ~ 1,000,000 Trade-Offs? 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 11

12 Example: Kanguru MicroDrive MicroDrive: Cost vs. Storage Capacity 2,000 1,500 Price ($) 1, Price ($) ,450 Storage Capacity (MByes) USB Mass Storage Device Data as of 27 Feb 03 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 12

13 Drive Read/Write Technologies Hard disk Disk head floats above fast rotating disk Head crash: r/w head strikes platter, physically destroying magnetic coating and data Denser magnetic coating gives higher storage density Floppy Head actually rides on slow moving disk Sizes: 8, 5.25, and March 2003 IT 212 Part 4 : Data Storage (C10-14) 13

14 Electromagnetism Magnetism and Electricity are interrelated Flow of current creates a magnetic field this is why motors work Movement of a wire in a magnetic field causes current to flow this is why generators work Direction of magnetic field is related to direction of current polarized (N or S) Chapter 10 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 14

15 Writing Data Bits to Disks Disk storage media Thin layer of magnetic particles on/in disk Disk head Ferrite core with a wire wrapped around it Electric current flowing in head generates polarized magnetic field Magnetizing of head magnetizes spot on disk Data actually stored as the change in polarization 1: -/+ +/- OR +/- -/+ 0: +/- +/- OR -/+ -/+ 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 15

16 Reading Data Bits from Disks Reading data Rotating disk causes magnetic field to move relative to read head which induces current in read head Head passes over changing magnetic field Direction of induced current flow reveals polarity of disk magnetic field Electronics reads direction of current flow as 1 or 0 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 16

17 Formatting a Disk Need addresses to locate data Disk segmented by electronics Tracks (concentric circles) Tracks divided into sectors (pie shaped wedges) typically 512 bytes Block or cluster OS defined minimum storage entity Typical cluster in DOS is 4kByte Why is Formatting Necessary? 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 17

18 Writing Files to Disk (1) To save a working file from RAM (volatile) to a disk drive (non-volatile) OS reads FAT to find an unused cluster OS converts the number of the unused cluster it read from FAT to the physical track and sector OS sends desired physical ADX and data to BIOS 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 18

19 Writing Files to Disk (2) BIOS communicates with the disk drive electronics and copies data from RAM to the disk drive If more than 1 cluster, OS reserves another free cluster Can be anywhere on the disk FAT contains links from cluster to cluster FAT is updated when write complete 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 19

20 Reading Files From Disk (1) Accessing a file on a disk to work on it is called Opening the file Read only Read/write Application will often list files you recently worked on 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 20

21 Reading Files From Disk (2) To load a file from disk drive (nonvolatile) to RAM (volatile) After selecting file, the OS locates it in the FAT, and reads address of the first cluster The OS converts the cluster number to track and sectors OS requests the BIOS to retrieve the file to RAM; does not destroy original No need to update FAT 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 21

22 Deleting Files MS Windows Unix Files not actually deleted, just access to them Files overwritten to make unreadable by others Under Win95 or 98, OS can automatically move deleted files to recycle bin If a file is deleted from a floppy and not yet overwritten, may be able to retrieve the data using undelete command What are the Security/Privacy Issues? 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 22

23 End of Chapter Next: Chapter 11 How Disk Drives Work 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 23

24 Why Floppy Diskettes? Convenient (small size, portable) Widely available; standardized Inexpensive Floppy drive evolution Disk size 8 (1973) 5.25 (1976) 3.5 (1980) Capacity: 90K to 1.4MB typical What about Security/Privacy Protection? 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 24

25 3.5 Floppy Disk 80 tracks 18 sectors/track 512 bytes/sector Plastic case Read-only window writable = no hole not-writable = hole Rotation speed 300 RPM Density sensing hole double density = no hole high density (1.44 Mb) = hole Insertion key Metal shutter to protect access to Mylar disk 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 25

26 Hard Drives (1) Evolution Casing 10MB (1980) to 80 GB+ today Access time from 87 milliseconds to < 8ms Size from 3 to 4 thick to almost credit card size Entire mechanism is air-tight to prevent dust, etc. from getting between head and disk Head/disk gap is 2 millionths of an inch Dust is typically 10x gap Smoke particle is typically 5x gap Hair is 30x gap Any head/disk contact causes permanent loss of data 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 26

27 Hard Disks (2) What about Price? (Cost/Mbytes) 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 27

28 Disk Density Never enough storage available Bloated programs including OS Emphasize on-line help vs. printed manuals Large amounts of data Multimedia Graphics MPEG (movies) MP-3 music 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 28

29 Disk Performance Access Speed Time to get data to/from disk Around 7-9ms access time Latency depends on rotation speed Data transfer rate Number of heads Electronics RAM buffer in disk electronics IDE/SCSI Microprocessors getting faster, disk I/O holding steady (not increasing as quickly) Data Transfer Rate - How much/fast the data is exchanged 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 29

30 End of Chapter Next: Chapter 12 How Disk Drives Increase Speed & Storage 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 30

31 Improving Speed Access time - how long on average it takes to move the read/write head into position of the beginning of a file Performance Improvement Methods faster disk rotation faster electronics on device memory caching read ahead write buffering Data Transfer Rate - number of bytes or Mbytes transferred from one device to another in a specified amount of time 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 31

32 Improving Storage The capacity of a given disk can be better utilized by Data Compression Two Levels: File, Disk Some anti-virus programs don t like Some applications will not work with compressed files Defragmentation Utility which should be run occasionally 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 32

33 Directory Many files can be stored on a disk drive Hierarchical approach helps to organize them Directory A grouping of files and subdirectories that can be accessed collectively Special directories Root: First (top level) directory for a given disk. : Current directory.. : One directory closer to root than current directory 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 33

34 Directory Usage Most applications have a default storage directory User can organize files by various means School related IT212 ECE548 Hobbies Aquarium Genealogy 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 34

35 FAT: disk road map Unique table that describes stored on the disk itself in reserved locations Physical location of each file Linkages between clusters Empty locations on disk Locations which do not correctly store data (bad blocks) 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 35

36 FAT Types (1) FAT 12 Original DOS FAT 12-bit cluster address All floppies still use this fat for compatibility Hard disks < 16 Mbytes 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 36

37 FAT Types (2) FAT 16 Win95 16-bit cluster address Hard disks < 2 GB FAT 32 Win 95/98/2000/XP 32-bit cluster address Hard disks < 2048 GB 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 37

38 The FAT Problem Thinning Out the FAT FAT has space for only 65,536 entries (2 16 ) to describe all clusters on disk Larger disk, large cluster size cluster _ size Disk _ size # entries _ in _ FAT 256MB disk, cluster size=4k 512MB disk, cluster size=8k 1GB disk, cluster size=16k 2GB disk, cluster size=32k 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 38

39 FAT Limitation Solutions Disk compression: OS creates 1 large file which packs all files into 1 so that no space is wasted Revise FAT structure Windows 98 FAT32 Up to 6GB, cluster size=4k 2,048GB, cluster size=32kb Eliminate FAT structure: Master File Table Windows 2000, NT NT File system (NTFS) 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 39

40 File System Summary Characteristic FAT12 FAT16 FAT32 NTFS DOS,Windows9x, NT, DOS,Windows9x, Windows98, NT, WindowsNT, Operating System 2000, XP NT,2000, XP 2000, XP 2000, XP MaximumVolumeSize 16MBytes GBytes 2048GBytes nearly unlimited maximumnumberof files ,536 4,294,967,296 nearly <=255characters unlimited filename length 8+3(name+ext) <=255characters <=255characters &unicode set Security no no no access control Ecomony(cluster size) minimal minimal improved maximal Which File System is Best? 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 40

41 Disk Storage Paradox Since the cluster is the minimum unit of space allocatable for a single file, all files must be some multiple of clusters long A 1 byte text file will still take up 1 cluster (32K) on a 2GB drive The Larger the disk, the more space will be wasted due to partially filled clusters. 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 41

42 Disk Compression Entire Disk Volume is created as a single file by Operating System Operating System treats this file as a virtual drive Used special device driver to manage access keeps track of how each cluster is used allows for cluster to be shared between files When files are stored, only the space needed to save the file is allocated, thus the cluster limit is bypassed and space is saved Is Disk Compression Necessary/Economical Today? 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 42

43 File Compression Algorithm-based looks for recurring data, patterns of data creates dictionary of patterns found in file original data contains pointers to dictionary entries compressed file includes dictionary of patterns In some cases if data has few patterns, compressed file may be larger than original can compress binary files; also file folders trees Password protect compressed file cannot decompress file without password Is File Compression Necessary/Economical Today? 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 43

44 Disk Defragmentation Files are stored as linked lists of clusters not necessarily sequentially Erased files leave randomly distributed unused areas New files must be made to fit in unused areas Defrag: Move clusters until each file contiguous How Often to Perform? Fragmented Disk Defragmentation 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 44

45 End of Chapter Next: Chapter 13 How Optical Storage Works 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 45

46 CD-ROMs Compact Disk, Read Only Memory Large Storage Capacity 650MB per side Use for Large Data Not Needing Update Clip art Photographs Large programs Book volumes 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 46

47 CD-R, CD-RW CD-R Compact Disk, Recordable Record only once (WORM) CD-RW Compact Disk, ReWritable Record and erase multiple times 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 47

48 DVD Digital Video Disk Digital Versatile Disk Large Capacity, 8.5 GB per side Movies Huge data storage Maps Phone directories Images 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 48

49 CD-ROM Technology Data Stored in Spiral Sectors Hard and floppy drives use concentric tracks Variable Rotation Speed Constant tangential velocity, i.e., data moves at same speed over optical sensor Faster near center 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 49

50 CD-ROM Technology Inner Circle: 4 sectors Outer Circle: 7 sectors When reading outer circle, need to rotate slower so that time to read each sector is same 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 50

51 CD-ROM Technology Buried Surface Contains Lands and Pits Detector Shines Laser Beam Through Plastic Protective Layer to Buried Data Layer Light that strikes pits is scattered and not reflected Light that strikes lands is reflected directly back towards detector and redirected via prism to photo-diode Photo-detector converts light/no-light to electrical signal indicating 1 or 0 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 51

52 CD-R Technology Disk Layers Clear Polymer (laser side) Clear lacquer Gold reflective Dye (usually green) Polycarbonate (Lexan) plastic structural layer (label side) 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 52

53 CD-R Technology Disk Surface Pregrooved ATIP: absolute timing in pregroove Groove is modulated Laser/photodetector measures modulation and adjusts motor to maintain constant medium/detector relative speed Laser Beam Heats Buried Layer and Produces Pits by Either Bleaching dye layer Distorting polycarbonate plastic layer Producing bubble in dye layer 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 53

54 DVD Technology Disk Layers Symmetric, read from both sides Multiple data layers on each side Laser focused through one data layer to next Spiral in on one layer, out on other No need to reposition head in middle of recording Shorter Wavelength Light Allows Focusing to Smaller Size 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 54

55 CD-RW and DVD RAM (R/W) Recording Layer Is Made of a Material Which Can Be Either Crystalline (Reflective) or Amorphous (Non-reflective) Write Erase Do nothing to make land To make pit, laser beam strikes buried layer and heats spot to F Changes crystalline spot to amorphous Amorphous spots can be annealed back to crystalline state using lower energy beam (400F) Which to Use: CD-R, CD-RW, DVD-RW? 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 55

56 End of Chapter Next: Chapter 14 Removable Data Storage 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 56

57 Zip Drives vs. 3.5 Floppy (1) Capacity MB vs. 1.4MB Speed Heads 3,000 rpm vs. 360rpm Dual read/write heads: lightly contact surface 1/10 size of floppy heads 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 57

58 Zip Drives vs. 3.5 Floppy (2) Track spacing 2,118 vs. 135 Sector Same physical size vs. same angular size Disk surface Higher density recording media 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 58

59 Removable Hard Drives (1) Have high density but need Portability work/school/home Expandability Individual drives for particular applications Backup/Security make copy of non-removable drive, store elsewhere requires more physical security handling 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 59

60 Removable Hard Drives (2) Typical hard drive is sealed to prevent particles causing head crash Removable alternative: Jaz drive Metal door seals drive when not in housing Filter around spindle prevents particles greater than 3 microns from being pulled into disk while spinning 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 60

61 Removable Hard Drives (3) Particle less than 2 microns, passes under head If particle more than 2 microns, contacts head, pushes head away. If write occurs (high write) drive detects and reads to see if OK Read/Write Arm Motion of Disk surface Read/Write Head 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 61

62 QIC Tape Drive Primary Purpose: Data Archival (i.e., Long Term) Large Capacity ~ 4G bytes + inexpensive sequential access number of standard recording formats directory {e.g., FAT} of entire contents placed first or in separate track recorded in spiral fashion on the tape media tracks are segments into blocks {similar to disks} includes Error Correction Codes with the data multiple read/write heads for write verification 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 62

63 Media Data Retention Rate How long will data stored on computer media remain intact? Media Years Stone Tablet 2200 Archival Acid-Free Paper Photographic Slides 100 Microfilm Magnetic Tape Digital Linear Tape Data Grade VHS Tape Newspaper CD Lifetime of Technology versus Lifetime of Medium 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 63

64 Future of Storage Hard drive Historically 60% capacity increase per year Improved cost/size $35 per megabyte to $.01 in last 10 years Future technologies Others: Near-field recording/magneto-optical Uses combination of laser and magnetism Optically assisted Winchester (OAW) drives Reflected laser beam affected by magnetic polarity Uses MEMS (microelectro-mechanical system) for mirrors, lenses Web/Internet/On-Line 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 64

65 End of Lecture Next Lecture: Input/Output Devices 3 March 2003 IT 212 Part 4 : Data Storage (C10-14) 65

Today we will learn about:

Today we will learn about: Storage Devices Today we will learn about: Storage Devices Ancient technology (from my days as a student) Floppies CD_ROM, DVDs Hard drives Magnetic tape Storage versus Memory Memory holds data, programs

More information

INTRODUCTION TO Data Storage

INTRODUCTION TO Data Storage Introduction to Computing INTRODUCTION TO Data Storage CPU AND MICROPROCESSOR Memory Used to store data, instructions, and information The operating system and other system software Application programs

More information

Discovering Computers 2008

Discovering Computers 2008 Discovering Computers 2008 Chapter 7 Storage 1 1 Chapter 7 Objectives Differentiate between storage devices and storage media Describe the characteristics of magnetic disks Describe the characteristics

More information

1.1 Bits and Bit Patterns. Boolean Operations. Figure 2.1 CPU and main memory connected via a bus. CS11102 Introduction to Computer Science

1.1 Bits and Bit Patterns. Boolean Operations. Figure 2.1 CPU and main memory connected via a bus. CS11102 Introduction to Computer Science 1.1 Bits and Bit Patterns CS11102 Introduction to Computer Science Data Storage 1.1 Bits and Their Storage 1.2 Main Memory 1.3 Mass Storage 1.4 Representation of information as bit patterns Bit: Binary

More information

William Stallings Computer Organization and Architecture 6 th Edition. Chapter 6 External Memory

William Stallings Computer Organization and Architecture 6 th Edition. Chapter 6 External Memory William Stallings Computer Organization and Architecture 6 th Edition Chapter 6 External Memory Types of External Memory Magnetic Disk RAID Removable Optical CD-ROM CD-Recordable (CD-R) CD-R/W DVD Magnetic

More information

STORAGE. Memory Versus Storage

STORAGE. Memory Versus Storage STORAGE Memory Versus Storage Memory Memory, which is composed of one or more chips on the motherboard, holds data and instruction while they are being processed by the CPU. The contents of volatile memory,

More information

William Stallings Computer Organization and Architecture 8 th Edition. Chapter 6 External Memory

William Stallings Computer Organization and Architecture 8 th Edition. Chapter 6 External Memory William Stallings Computer Organization and Architecture 8 th Edition Chapter 6 External Memory Types of External Memory Magnetic Disk RAID Removable Optical CD-ROM CD-Recordable (CD-R) CD-R/W DVD Magnetic

More information

Storage. What is storage? Holds data, instructions, and information for future use Storage medium is physical material used for storage

Storage. What is storage? Holds data, instructions, and information for future use Storage medium is physical material used for storage Storage 1 Storage What is storage? Holds data, instructions, and information for future use Storage medium is physical material used for storage Also called secondary storage p. 7.02 Fig. 7-1 2 Storage

More information

Storage. How does volatility compare? What is a storage device and a storage medium? Today s standard disk is 3.5 wide

Storage. How does volatility compare? What is a storage device and a storage medium? Today s standard disk is 3.5 wide 1 Chapter 7 Storage 2 Chapter 7 Objectives 3 Memory Versus Storage 1 What is storage? 2 Media and devices used to store and retrieve data, instructions,and information 4 Memory Versus Storage 1 How does

More information

Chapter 6A. Describing Storage Devices. Describing Storage Devices. Types of Storage Devices. Store data when computer is off Two processes

Chapter 6A. Describing Storage Devices. Describing Storage Devices. Types of Storage Devices. Store data when computer is off Two processes Chapter 6A Types of Storage Devices Describing Storage Devices Store data when computer is off Two processes Writing data Reading data 2 Describing Storage Devices Storage terms Media is the material storing

More information

General Items: Reading Materials: Miscellaneous: Lecture 9 / Chapter 7 COSC1300/ITSC 1401/BCIS /19/2004 ? H ? T

General Items: Reading Materials: Miscellaneous: Lecture 9 / Chapter 7 COSC1300/ITSC 1401/BCIS /19/2004 ? H ? T General Items:? H Reading Materials:? T Miscellaneous: F.Farahmand 1 / 11 File: lec8chap7f04.doc Electronic Storage - The medium on which we can keep data, instructions, and information - Examples: Floppy

More information

Semiconductor Memory Types Microprocessor Design & Organisation HCA2102

Semiconductor Memory Types Microprocessor Design & Organisation HCA2102 Semiconductor Memory Types Microprocessor Design & Organisation HCA2102 Internal & External Memory Semiconductor Memory RAM Misnamed as all semiconductor memory is random access Read/Write Volatile Temporary

More information

lesson 3 Transforming Data into Information

lesson 3 Transforming Data into Information essential concepts lesson 3 Transforming Data into Information This lesson includes the following sections: How Computers Represent Data How Computers Process Data Factors Affecting Processing Speed Extending

More information

Magnetic Disk. Optical. Magnetic Tape. RAID Removable. CD-ROM CD-Recordable (CD-R) CD-R/W DVD

Magnetic Disk. Optical. Magnetic Tape. RAID Removable. CD-ROM CD-Recordable (CD-R) CD-R/W DVD External Memory Magnetic Disk RAID Removable Optical CD-ROM CD-Recordable (CD-R) CD-R/W DVD Magnetic Tape Disk substrate coated with magnetizable material (iron oxide rust) Substrate used to be aluminium

More information

The personal computer system uses the following hardware device types -

The personal computer system uses the following hardware device types - EIT, Author Gay Robertson, 2016 The personal computer system uses the following hardware device types - Input devices Input devices Processing devices Storage devices Processing Cycle Processing devices

More information

FACTFILE: GCE DIGITAL TECHNOLOGY

FACTFILE: GCE DIGITAL TECHNOLOGY FACTFILE: GCE DIGITAL TECHNOLOGY AS2: FUNDAMENTALS OF DIGITAL TECHNOLOGY Hardware and Software Architecture 2 Learning Outcomes Students should be able to: explain the need for secondary storage; describe

More information

vinodsrivastava.wordpress.com

vinodsrivastava.wordpress.com vinodsrivastava.wordpress.com SECTION 3 STORAGE SYSTEM This Section you will learn about: BACK-UP STORAGE NEED OF BACK-UP ACCESSING DATA FROM STORAGE TYPE OF BACKUP(Secondary Storage) Devices o Magnetic-

More information

TODAY AND TOMORROW. Storage CHAPTER

TODAY AND TOMORROW. Storage CHAPTER 1 TODAY AND TOMORROW 3 Storage CHAPTER Storage Systems Characteristics All storage systems have specific characteristics Storage medium (what data is stored on) Can be removable or nonremovable from the

More information

Hard facts. Hard disk drives

Hard facts. Hard disk drives Hard facts Text by PowerQuest, photos and drawings Vlado Damjanovski 2004 What is a hard disk? A hard disk or hard drive is the part of your computer responsible for long-term storage of information. Unlike

More information

A track on a magnetic disk is a concentric rings where data is stored.

A track on a magnetic disk is a concentric rings where data is stored. CS 320 Ch 6 External Memory Figure 6.1 shows a typical read/ head on a magnetic disk system. Read and heads separate. Read head uses a material that changes resistance in response to a magnetic field.

More information

storage Storage Storage Storage Storage Storage

storage Storage Storage Storage Storage Storage What is storage? Holds data, instructions, and information for future use medium is physical material used for storage Also called secondary storage 1 p. 7.02 Fig. 7-1 2 What is capacity? Number of bytes

More information

Storage. Chapter3 ITBIS105

Storage. Chapter3 ITBIS105 Storage Chapter3 ITBIS105 IS-IT-UOB 2013 Storage What is storage? Holds data, instructions, and information for future use Storage medium is physical material used for storage Also called secondary storage

More information

External Memory. Computer Architecture. Magnetic Disk. Outline. Data Organization and Formatting. Write and Read Mechanisms

External Memory. Computer Architecture. Magnetic Disk. Outline. Data Organization and Formatting. Write and Read Mechanisms Computer Architecture Prof. Dr. Nizamettin AYDIN naydin@yildiz.edu.tr nizamettinaydin@gmail.com External Memory http://www.yildiz.edu.tr/~naydin 1 2 Outline Types of External Memory Magnetic Disk Magnetic

More information

COMPUTER STORAGE DEVICES

COMPUTER STORAGE DEVICES COMPUTER STORAGE DEVICES A storage device records and retrieves items to and from a storage medium. A storage media is the actual physical material that holds data and programs. Writing is the process

More information

STORAGE & FILE CONCEPTS, UTILITIES

STORAGE & FILE CONCEPTS, UTILITIES STORAGE & FILE CONCEPTS, UTILITIES (Pages 6, 150-158 - Discovering Computers & Microsoft Office 2010) I. Computer files data, information or instructions residing on secondary storage are stored in the

More information

What is Data Storage?

What is Data Storage? What is Data Storage? When we talk about storing data, we mean putting the data in a known place. We can later come back to that place and get our data back again. Writing data or saving data are other

More information

Semiconductor Memory Types. Computer & Microprocessor Architecture HCA103. Memory Cell Operation. Semiconductor Memory.

Semiconductor Memory Types. Computer & Microprocessor Architecture HCA103. Memory Cell Operation. Semiconductor Memory. Semiconductor Memory Types Computer & Microprocessor Architecture HCA103 Internal & External Memory UTM-RHH Slide Set 5 1 UTM-RHH Slide Set 5 2 Semiconductor Memory RAM Misnamed as all semiconductor memory

More information

Topic 4: Storage Devices

Topic 4: Storage Devices Topic 4: Storage Devices 4.1 Introduction A storage device is a computer peripheral which is used to store data and programs for a specific interval of time. A computer system usually contains several

More information

BCN1043. By Dr. Mritha Ramalingam. Faculty of Computer Systems & Software Engineering

BCN1043. By Dr. Mritha Ramalingam. Faculty of Computer Systems & Software Engineering BCN1043 By Dr. Mritha Ramalingam Faculty of Computer Systems & Software Engineering mritha@ump.edu.my http://ocw.ump.edu.my/ authors Dr. Mohd Nizam Mohmad Kahar (mnizam@ump.edu.my) Jamaludin Sallim (jamal@ump.edu.my)

More information

VFAT. Win 95 and Win 98 2 GB Maximum Partition 32 K 2 GB. Long File Names

VFAT. Win 95 and Win 98 2 GB Maximum Partition 32 K 2 GB. Long File Names VFAT Win 95 and Win 98 2 GB Maximum Partition 32 K Cluster @ 2 GB Long File Names 50 FAT 32 Win 95 and Win 98 2 TB Maximum Partition 4 KB Cluster @ 2 GB 51 Partition Format Load OS 52 Fixed Disk Setup

More information

EXTERNAL MEMORY (Part 1)

EXTERNAL MEMORY (Part 1) Eastern Mediterranean University School of Computing and Technology ITEC255 Computer Organization & Architecture EXTERNAL MEMORY (Part 1) Introduction When external memory is discussed, one should consider

More information

16/06/56. Secondary Storage. Secondary Storage. Secondary Storage The McGraw-Hill Companies, Inc. All rights reserved.

16/06/56. Secondary Storage. Secondary Storage. Secondary Storage The McGraw-Hill Companies, Inc. All rights reserved. Distinguish between primary and secondary storage. Discuss the important characteristics of secondary storage, including media, capacity, storage devices, and access speed. Describe hard disk platters,

More information

CO212 Lecture 6: Memory Organization III

CO212 Lecture 6: Memory Organization III CO212 Lecture 6: Memory Organization III Shobhanjana Kalita, Dept. of CSE, Tezpur University Slides courtesy: Computer Architecture and Organization, 9 th Ed, W. Stallings External Memory Magnetic disks

More information

Silberschatz, et al. Topics based on Chapter 13

Silberschatz, et al. Topics based on Chapter 13 Silberschatz, et al. Topics based on Chapter 13 Mass Storage Structure CPSC 410--Richard Furuta 3/23/00 1 Mass Storage Topics Secondary storage structure Disk Structure Disk Scheduling Disk Management

More information

External Memory. Types of External Memory. Magnetic Disk. Optical. Magnetic Tape. RAID Removable. CD-ROM CD-Recordable (CD-R) CD-R/W DVD

External Memory. Types of External Memory. Magnetic Disk. Optical. Magnetic Tape. RAID Removable. CD-ROM CD-Recordable (CD-R) CD-R/W DVD External Memory 1 Types of External Memory Magnetic Disk RAID Removable Optical CD-ROM CD-Recordable (CD-R) CD-R/W DVD Magnetic Tape 2 1 3 Magnetic Disk Disk substrate coated with magnetizable material

More information

SEN361 Computer Organization. Prof. Dr. Hasan Hüseyin BALIK (6 th Week)

SEN361 Computer Organization. Prof. Dr. Hasan Hüseyin BALIK (6 th Week) + SEN361 Computer Organization Prof. Dr. Hasan Hüseyin BALIK (6 th Week) + Outline 2. The computer system 2.1 A Top-Level View of Computer Function and Interconnection 2.2 Cache Memory 2.3 Internal Memory

More information

Computer System Architecture

Computer System Architecture CSC 203 1.5 Computer System Architecture Department of Statistics and Computer Science University of Sri Jayewardenepura Secondary Memory 2 Technologies Magnetic storage Floppy, Zip disk, Hard drives,

More information

Overview of Mass Storage Structure

Overview of Mass Storage Structure Overview of Mass Storage Structure Magnetic disks provide bulk of secondary storage Drives rotate at 70 to 250 times per second Ipod disks: 4200 rpm Laptop disks: 4200, 5400 rpm or 7200 rpm Desktop disks:

More information

Chapter 6 Part 1 Understanding Hardware

Chapter 6 Part 1 Understanding Hardware Chapter 6 Part 1 Understanding Hardware CS10001- Computer Literacy Chapter 6: Understanding and Assessing Hardware 1 System Evaluation The subsystems to understand: CPU subsystem Memory subsystem Storage

More information

Unit 5: Memory Organizations

Unit 5: Memory Organizations Memory Organizations Unit 5: Memory Organizations Introduction This unit considers the organization of a computer's memory system. The characteristics of the most important storage technologies are described

More information

Chapter 14: Mass-Storage Systems

Chapter 14: Mass-Storage Systems Chapter 14: Mass-Storage Systems Disk Structure Disk Scheduling Disk Management Swap-Space Management RAID Structure Disk Attachment Stable-Storage Implementation Tertiary Storage Devices Operating System

More information

The Fetch-Execute Cycle

The Fetch-Execute Cycle The Fetch-Execute Cycle Fetch the next instruction Decode the instruction Get data (if needed) Execute the instruction Remember: In a vn machine, both instructions and data are stored in the same memory!

More information

Hard Drive Technologies

Hard Drive Technologies Unit 8 Hard Drive Technologies Copyright 2002 Heathkit Company, Inc. All rights reserved. The disk surface is divided into tracks. 2 Most Hard Drives Have Multiple Platters Platter1, Track1 Platter2, Track1

More information

Chapter 14: Mass-Storage Systems

Chapter 14: Mass-Storage Systems Chapter 14: Mass-Storage Systems Disk Structure Disk Scheduling Disk Management Swap-Space Management RAID Structure Disk Attachment Stable-Storage Implementation Tertiary Storage Devices Operating System

More information

ASSIGNMENT , The feedback signal in the velocity transducer servo circuit performs which of the following functions? 12-1.

ASSIGNMENT , The feedback signal in the velocity transducer servo circuit performs which of the following functions? 12-1. ASSIGNMENT 12 Textbook Assignment: Magnetic Disk Storage, chapter 10 Continued, pages 10-21 through 10-33; and CD-ROM Storage, chapter 11, pages 11-1 through 11-7. 12- The velocity transducer in a disk

More information

INFS 214: Introduction to Computing

INFS 214: Introduction to Computing INFS 214: Introduction to Computing Session 6 Storage Technologies Lecturer: Dr. Ebenezer Ankrah, Dept. of Information Studies Contact Information: eankrah@ug.edu.gh College of Education School of Continuing

More information

Advanced Parallel Architecture Lesson 4 bis. Annalisa Massini /2015

Advanced Parallel Architecture Lesson 4 bis. Annalisa Massini /2015 Advanced Parallel Architecture Lesson 4 bis Annalisa Massini - 2014/2015 Internal Memory RAM Many memory types are random access individual words of memory are directly accessed through wired-in addressing

More information

Hard Disk Organization. Vocabulary

Hard Disk Organization. Vocabulary Hard Disk Organization Vocabulary Platter: one ceramic plate, covered with magnetizable film where the bits are actually stored. Both sides of a platter can be used. Increasing the number of platters is

More information

External Memory. Patrick Happ Raul Queiroz Feitosa. Parts of these slides are from the support material provided by W. Stallings

External Memory. Patrick Happ Raul Queiroz Feitosa. Parts of these slides are from the support material provided by W. Stallings External Memory Patrick Happ Raul Queiroz Feitosa Parts of these slides are from the support material provided by W. Stallings Objective This chapter examines a range of external memory devices and systems.

More information

Backing Storage Media

Backing Storage Media Backing Storage Media Key Words The following words will crop up as part of the following presentation. You should use your notes sheet to log information about them when it is covered. You will be quizzed

More information

Tape pictures. CSE 30341: Operating Systems Principles

Tape pictures. CSE 30341: Operating Systems Principles Tape pictures 4/11/07 CSE 30341: Operating Systems Principles page 1 Tape Drives The basic operations for a tape drive differ from those of a disk drive. locate positions the tape to a specific logical

More information

Chapter 12: Mass-Storage Systems. Operating System Concepts 8 th Edition,

Chapter 12: Mass-Storage Systems. Operating System Concepts 8 th Edition, Chapter 12: Mass-Storage Systems, Silberschatz, Galvin and Gagne 2009 Chapter 12: Mass-Storage Systems Overview of Mass Storage Structure Disk Structure Disk Attachment Disk Scheduling Disk Management

More information

Computer Principles and Applications SSC. 151 Dr. Abdel-Hameed Nawar Spring Solution Key to Problem Set 3

Computer Principles and Applications SSC. 151 Dr. Abdel-Hameed Nawar Spring Solution Key to Problem Set 3 Social Science Computing Department Faculty of Economics and Political Science Computer Principles and Applications Cairo University SSC. 151 Dr. Abdel-Hameed Nawar Spring 2009 Name: ID No. Date : Section

More information

Module 13: Secondary-Storage

Module 13: Secondary-Storage Module 13: Secondary-Storage Disk Structure Disk Scheduling Disk Management Swap-Space Management Disk Reliability Stable-Storage Implementation Tertiary Storage Devices Operating System Issues Performance

More information

QUESTIONS ABOUT COMPUTERS

QUESTIONS ABOUT COMPUTERS 1. What is a computer? QUESTIONS ABOUT COMPUTERS A computer is a machine that processes information, in other words, it receives and stores data, performs calculations with this data and presents the results

More information

FY04: jennifer george. Course Information

FY04: jennifer george. Course Information FY04: Course Information Autumn Term Jennifer George Email: mas02jg@gold.ac.uk Office Hours: Mondays 3.00pm 5.00pm (email for appointments) Office: Room 4, 29 St James 1 Lectures & Labs Lectures: RHB 306

More information

Computer Organization

Computer Organization Chapter 5 Computer Organization Figure 5-1 Computer hardware :: Review Figure 5-2 CPU :: Review CPU:: Review Registers are fast stand-alone storage locations that hold data temporarily Data Registers Instructional

More information

UNIT 3 SECONDARY STORAGE TECHNIQUES

UNIT 3 SECONDARY STORAGE TECHNIQUES Basic Computer Organisation UNIT 3 SECONDARY STORAGE TECHNIQUES Structure Page No. 3.0 Introduction 64 3.1 Objectives 64 3.2 Secondary Storage Systems 65 3.3 Hard Drives 65 3.3.1 Characteristics: Drive

More information

File System Management

File System Management Lecture 8: Storage Management File System Management Contents Non volatile memory Tape, HDD, SSD Files & File System Interface Directories & their Organization File System Implementation Disk Space Allocation

More information

PRATHYUSHA INSTITUTE OF TECHNOLOGY AND MANAGEMENT

PRATHYUSHA INSTITUTE OF TECHNOLOGY AND MANAGEMENT PRATHYUSHA INSTITUTE OF TECHNOLOGY AND MANAGEMENT DEPARTMENT OF INFORMATION TECHNOLOGY Staff Name: Prof. S. Athinarayanan UNIT IV PART A Branch: ECE / V Sem 1. Define Memory Access Time and Memory Cycle

More information

Computer Science 61C Spring Friedland and Weaver. Input/Output

Computer Science 61C Spring Friedland and Weaver. Input/Output Input/Output 1 A Computer is Useless without I/O I/O handles persistent storage Disks, SSD memory, etc I/O handles user interfaces Keyboard/mouse/display I/O handles network 2 Basic I/O: Devices are Memory

More information

Disk Scheduling COMPSCI 386

Disk Scheduling COMPSCI 386 Disk Scheduling COMPSCI 386 Topics Disk Structure (9.1 9.2) Disk Scheduling (9.4) Allocation Methods (11.4) Free Space Management (11.5) Hard Disk Platter diameter ranges from 1.8 to 3.5 inches. Both sides

More information

COSC 243. Memory and Storage Systems. Lecture 10 Memory and Storage Systems. COSC 243 (Computer Architecture)

COSC 243. Memory and Storage Systems. Lecture 10 Memory and Storage Systems. COSC 243 (Computer Architecture) COSC 243 1 Overview This Lecture Source: Chapters 4, 5, and 6 (10 th edition) Next Lecture Control Unit and Microprogramming 2 Electromagnetic Induction Move a magnet through a coil to induce a current

More information

CD and DVD History. High Sierra Format (HSF) CD-ROM Data Storage. CD-ROM Mode 1. CD-ROM Mode 2

CD and DVD History. High Sierra Format (HSF) CD-ROM Data Storage. CD-ROM Mode 1. CD-ROM Mode 2 CD and DVD History CD-DA (Compact Disk-digital audio), the original compact disc for music, was defined by Philips and Sony, in 1982. The CD-DA allows a music playing time of 74 minutes 30 seconds. CD-ROM

More information

Silberschatz and Galvin Chapter 14

Silberschatz and Galvin Chapter 14 Silberschatz and Galvin Chapter 14 Tertiary Storage Structure CPSC 410--Richard Furuta 3/29/99 1 Tertiary Storage Structure Tertiary storage devices Operating system issues Performance issues CPSC 410--Richard

More information

Architecture of Computers and Parallel Systems Part 7: External Memories (Disks) Ing. Petr Olivka. Department of Computer Science

Architecture of Computers and Parallel Systems Part 7: External Memories (Disks) Ing. Petr Olivka. Department of Computer Science Architecture of Computers and Parallel Systems Part 7: External Memories (Disks) Ing. Petr Olivka petr.olivka@vsb.cz Department of Computer Science FEI VSB-TUO Architecture of Computers and Parallel Systems

More information

Digital Circuits ECS 371

Digital Circuits ECS 371 Digital Circuits ECS 371 Dr. Prapun Suksompong prapun@siit.tu.ac.th Lecture 25 Office Hours: BKD 3601-7 Monday 9:00-10:30, 1:30-3:30 Tuesday 10:30-11:30 1 Announcement Reading Assignment: Chapter 7: 7-1,

More information

Secondary Storage Devices: Magnetic Disks Optical Disks Floppy Disks Magnetic Tapes CENG 351 1

Secondary Storage Devices: Magnetic Disks Optical Disks Floppy Disks Magnetic Tapes CENG 351 1 Secondary Storage Devices: Magnetic Disks Optical Disks Floppy Disks Magnetic Tapes CENG 351 1 Secondary Storage Devices Two major types of secondary storage devices: 1. Direct Access Storage Devices (DASDs)

More information

Computer Organization and Technology External Memory

Computer Organization and Technology External Memory Computer Organization and Technology External Memory Assoc. Prof. Dr. Wattanapong Kurdthongmee Division of Computer Engineering, School of Engineering and Resources, Walailak University 1 Magnetic Disk

More information

Holds data, instructions, and information for future use Storage medium is physical material used for storage

Holds data, instructions, and information for future use Storage medium is physical material used for storage Chapter 3 Storage Storage What is storage? Holds data, instructions, and information for future use Storage medium is physical material used for storage Also called secondary storage such as : floppy disks,

More information

What is the typical configuration of a computer sold today? 1-1

What is the typical configuration of a computer sold today? 1-1 What is the typical configuration of a computer sold today? 1-1 Computer Hardware Components In this chapter: How did the computer become known as the stored-program computer? Do they all have the same

More information

ASSIGNMENT 11. Textbook Assignment: Magnetic Disk Storage, chapter 10, pages 10-1 through

ASSIGNMENT 11. Textbook Assignment: Magnetic Disk Storage, chapter 10, pages 10-1 through ASSIGNMENT 11 Textbook Assignment: Magnetic Disk Storage, chapter 10, pages 10-1 through 10-2 11- Magnetic disks are generally used as which of the following types of storage? 11-5. Fixed disks have which

More information

Memory Study Material

Memory Study Material Computer memory refers to the devices that are used to store data or programs on a temporary or permanent basis for use in a computer. Any data or instruction entered into the memory of a computer is considered

More information

Compact Disc How it Works?

Compact Disc How it Works? Compact Disc How it Works? A Compact Disc (CD) is an optical disc used to store digital data. CD-ROMs and CD-Rs remain widely used technologies in the computer industry.cd-rom drives employ a near-infrared

More information

FILE SYSTEMS. CS124 Operating Systems Winter , Lecture 23

FILE SYSTEMS. CS124 Operating Systems Winter , Lecture 23 FILE SYSTEMS CS124 Operating Systems Winter 2015-2016, Lecture 23 2 Persistent Storage All programs require some form of persistent storage that lasts beyond the lifetime of an individual process Most

More information

Chapter 2: A Closer Look at Hardware and Software

Chapter 2: A Closer Look at Hardware and Software Understanding Computers in a Changing Society, 3 rd Edition Chapter 2: A Closer Look at Hardware and Software Learning Objectives Understand how data is represented to a computer. Identify several types

More information

Ch 11: Storage and File Structure

Ch 11: Storage and File Structure Ch 11: Storage and File Structure Overview of Physical Storage Media Magnetic Disks RAID Tertiary Storage Storage Access File Organization Organization of Records in Files Data-Dictionary Dictionary Storage

More information

Computers Are Your Future

Computers Are Your Future Computers Are Your Future 2006 Prentice-Hall, Inc. Computers Are Your Future Chapter 7 Input/Output and Storage 2006 Prentice-Hall, Inc Slide 2 Input Input is any data entered into the computer s memory

More information

UNIT 4 Device Management

UNIT 4 Device Management UNIT 4 Device Management (A) Device Function. (B) Device Characteristic. (C) Disk space Management. (D) Allocation and Disk scheduling Methods. [4.1] Device Management Functions The management of I/O devices

More information

Introduction to Computers

Introduction to Computers Introduction to Computers Considers: Definition of computer Computer system devices Central Processing Unit Introduction to software What Is A Computer? A computer is an electronic device, operating under

More information

Advanced Information Storage 07

Advanced Information Storage 07 Advanced Information Storage 07 Atsufumi Hirohata Department of Electronics 16:00 24/October/2013 Thursday (V 120) Quick Review over the Last Lecture LTO Storage : 12.65 mm wide tape / Track width : Length

More information

COMPUTER SYSTEMS. Section 1

COMPUTER SYSTEMS. Section 1 COMPUTER SYSTEMS Section 1 BITS AND BYTES In order for information to flow through a computer system and be in a form suitable for processing, all symbols, pictures, or words must be reduced to a string

More information

Department of Computer Engineering University of California at Santa Cruz. File Systems. Hai Tao

Department of Computer Engineering University of California at Santa Cruz. File Systems. Hai Tao File Systems Hai Tao File System File system is used to store sources, objects, libraries and executables, numeric data, text, video, audio, etc. The file system provide access and control function for

More information

Downloaded from various sources on the NET

Downloaded from various sources on the NET Overview Computers. Hardware components of a Computer. Purpose and functions of computer operating systems. Evolution of computer operating systems. Operating systems available today. Downloaded from various

More information

Computers Are Your Future Prentice-Hall, Inc.

Computers Are Your Future Prentice-Hall, Inc. Computers Are Your Future 2006 Prentice-Hall, Inc. Computers Are Your Future Chapter 7 Input/Output and Storage 2006 Prentice-Hall, Inc Slide 2 What You Will Learn About ü The purpose of special keys and

More information

Chapter 2. Working with Disks and Other Removable Media

Chapter 2. Working with Disks and Other Removable Media Chapter 2 Working with Disks and Other Removable Media In This Chapter Understanding and Selecting Storage Obtaining Information about Computer Disks Assigning a Volume Label Working with USB Flash Drives

More information

Computer Technology Flash Card 2

Computer Technology Flash Card 2 Computer Technology Flash Card 2 Mouse An input device that allows the user to manipulate objects on the screen by moving the mouse along the surface of a desk. Data Refers to the symbols that represent

More information

Chapter 6 External Memory

Chapter 6 External Memory Chapter 6 External Memory Magnetic Disk Removable RAID Disk substrate coated with magnetizable material (iron oxide rust) Substrate used to be aluminium Now glass Improved surface uniformity Increases

More information

Principles of Operating Systems CS 446/646

Principles of Operating Systems CS 446/646 Principles of Operating Systems CS 446/646 5. Input/Output a. Overview of the O/S Role in I/O b. Principles of I/O Hardware c. I/O Software Layers d. Disk Management Physical disk characteristics Disk

More information

Disk scheduling Disk reliability Tertiary storage Swap space management Linux swap space management

Disk scheduling Disk reliability Tertiary storage Swap space management Linux swap space management Lecture Overview Mass storage devices Disk scheduling Disk reliability Tertiary storage Swap space management Linux swap space management Operating Systems - June 28, 2001 Disk Structure Disk drives are

More information

UNIT 2 Data Center Environment

UNIT 2 Data Center Environment UNIT 2 Data Center Environment This chapter provides an understanding of various logical components of hosts such as file systems, volume managers, and operating systems, and their role in the storage

More information

3-2-3 Secondary Storage

3-2-3 Secondary Storage 3-2-3 Secondary Storage Secondary Storage Hardware: - devices that permanently hold data and information as well as programs. We will look at floppy disks, hard disks, optical disks, magnetic tape, and

More information

CSE 4482 Computer Security Management: Assessment and Forensics. Computer Forensics: Working with Windows and DOS Systems

CSE 4482 Computer Security Management: Assessment and Forensics. Computer Forensics: Working with Windows and DOS Systems CSE 4482 Computer Security Management: Assessment and Forensics Computer Forensics: Working with Windows and DOS Systems Instructor: N. Vlajic,, Fall 2010 Required reading: Guide to Computer Forensics

More information

General Computing Concepts. Coding and Representation. General Computing Concepts. Computing Concepts: Review

General Computing Concepts. Coding and Representation. General Computing Concepts. Computing Concepts: Review Computing Concepts: Review Coding and Representation Computers represent all information in terms of numbers ASCII code: Decimal number 65 represents A RGB: (255,0,0) represents the intense red Computers

More information

A+ Certification Guide. Chapter 12 Storage Devices

A+ Certification Guide. Chapter 12 Storage Devices A+ Certification Guide Chapter 12 Storage Devices Chapter 12 Objectives Drive Interface Types Hard Disk Drives SSD / Flash Drives Identify External Removable Storage RAID Optical Drives Floppy Drives Tape

More information

Database Management Systems, 2nd edition, Raghu Ramakrishnan, Johannes Gehrke, McGraw-Hill

Database Management Systems, 2nd edition, Raghu Ramakrishnan, Johannes Gehrke, McGraw-Hill Lecture Handout Database Management System Lecture No. 34 Reading Material Database Management Systems, 2nd edition, Raghu Ramakrishnan, Johannes Gehrke, McGraw-Hill Modern Database Management, Fred McFadden,

More information

Skill Area 214: Use a Multimedia Software. Software application (SWA)

Skill Area 214: Use a Multimedia Software. Software application (SWA) Skill Area 214: Use a Multimedia application (SWA) 214.1 Fundamentals of Multimedia (3hrs) 214.1.1 Define Multimedia What is Multimedia? Derived from the word Multi and Media Multi Many, Multiple, Media

More information

Contents. Memory System Overview Cache Memory. Internal Memory. Virtual Memory. Memory Hierarchy. Registers In CPU Internal or Main memory

Contents. Memory System Overview Cache Memory. Internal Memory. Virtual Memory. Memory Hierarchy. Registers In CPU Internal or Main memory Memory Hierarchy Contents Memory System Overview Cache Memory Internal Memory External Memory Virtual Memory Memory Hierarchy Registers In CPU Internal or Main memory Cache RAM External memory Backing

More information

Storage and File Structure. Classification of Physical Storage Media. Physical Storage Media. Physical Storage Media

Storage and File Structure. Classification of Physical Storage Media. Physical Storage Media. Physical Storage Media Storage and File Structure Classification of Physical Storage Media Overview of Physical Storage Media Magnetic Disks RAID Tertiary Storage Storage Access File Organization Organization of Records in Files

More information

Introduction Disks RAID Tertiary storage. Mass Storage. CMSC 420, York College. November 21, 2006

Introduction Disks RAID Tertiary storage. Mass Storage. CMSC 420, York College. November 21, 2006 November 21, 2006 The memory hierarchy Red = Level Access time Capacity Features Registers nanoseconds 100s of bytes fixed Cache nanoseconds 1-2 MB fixed RAM nanoseconds MBs to GBs expandable Disk milliseconds

More information