Get premium membership and access questions with answers, video lessons as well as revision papers.

What file access pattern is particularly suited to chained file allocation on disk?

      

What file access pattern is particularly suited to chained file allocation on disk?

  

Answers


Faith
Chained, or 'Linked List' allocation, like contiguous allocation, is useful for when dealing with large,
sequential files. The first word of each block is used to point to the next one in sequence. It is fine for
sequential access because every block needs to be read regardless. It's a living nightmare for random
access files because we introduce a lot of unnecessary, wasted “read” operations to the FS.
Titany answered the question on April 26, 2022 at 11:22


Next: Give an example where contiguous allocation of file blocks on disks can be used in practice
Previous: What file allocation strategy is most appropriate for random access files?

View More Operating Systems Questions and Answers | Return to Questions Index


Learn High School English on YouTube

Related Questions