Unit 8 : Disk Management Flashcards

1
Q

What is the lowest level of a file system?

A
  1. Secondary Storage ( Hard Drive )
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the first secondary storage?

A
  1. Magnetic Tape
  • Magnetic Tapes access time is slow compared to disk
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is tape is now used for?

A
  1. Storage and Backup of infrequently used data
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What part of computer is responsible to use hardware efficiently?

A
  1. Operating System
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the standard ( criteria ) for disk drivers? ( 2 )

A
  1. Fast Access Time
  2. Increase Disk Bandwidth
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

List out 2 parts of access time in Hard Drive

A
  1. Seek Time
    • Time for the disk arm to move to the head of the cylinder containing the desired sector
  2. Rotational Latency
    • Additional time waiting for the disk to rotate to the desired sector of the disk head
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is a track on a hard drive?

A
  1. Concentric circles on a platter where data is stored
  • More on notion
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What component is a thin, circular disk within a hard drive that stores data?

A
  1. Platter
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the smallest physical unit of data storage within a track?

A
  1. Track Sector
  • 512 bytes or 4096 bytes in size
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Which component groups sectors to help reduce file fragmentation?

A
  1. Cluster
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What part of the hard drive contains a magnetic read/write head?

A
  1. Head
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is the purpose of the actuator arm in a hard drive?

A
  1. To position the head over the correct track to read or write data
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

How can we improve access time and bandwidth of Hard Drive?

A
  1. Scheduling the services of disk, I/O requests in a good order
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What are the steps when a process needs I/O to or from the disk? ( 3 )

A
  1. Systems calls are issued to the operating system
  2. IF disk is AVAILABLE, the request is serviced
  3. IF disk is NOT AVAILABLE, the request is placed on queue
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

List out the disk scheduling algorithms ( 6 )

A
  1. First Come First Serve ( FCFS )
  2. Shortest Seek Time First ( SSTF )
  3. Scan
  4. C-Scan
  5. Look
  6. C-Look
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is the simplest disk scheduling algorithms?

A
  1. First Come First Serve ( FCFS )
  • It is fair but it does not provide the fastest service
  • As its name, the first process will be processing first
17
Q

What disk scheduling algorithms minimized seek time?

A
  1. Shortest Seek Time First
  • It will first service that are closest to the current head position
  • Requests can arrive at any time, request furthest from the head will need to wait before getting serviced
18
Q

What disk scheduling algorithms is known as having the elevator syndrome?

A
  1. Scan
  • Like elevator go up / down first, then only goes down / up
  • Disk starts at one end and moves towards the other end
  • Head will reverses and moves back and it will serves the requests when it was moving back
19
Q

What page replacement algorithms has the following :
1. Like Scan
2. It is a circular scan

A
  1. C-Scan
  • It starts from the head and moves to an end ( 199 ), then the arm moves back without servicing any request
20
Q

What is the difference between Look and Scan?

A
  1. Look goes for the final request, while Scan moves the head from the beginning to the end
  • Look does not went to the end of the disk
21
Q

What does C-Look do?

A
  1. Starts from the current head and moves towards the end
  2. Stops at the last request without going to the end of the disk
  3. Reverses without serving any request
22
Q

What is the aim for Disk Scheduling Algorithms? ( 2 )

A
  1. Reduce seek time
  2. Reduce rotational latency while increasing bandwidth