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

Compare bitmap-based allocation of blocks on disk with a free block list

      

Compare bitmap-based allocation of blocks on disk with a free block list

  

Answers


Faith
The two methods of managing free space on the inode-based system are:
- Linked List of free blocks – the pointers are stored in the free blocks themselves, only a block of
pointers needs to be kept in main memory. Advantageous in that it gets smaller as the disk is used up.
- Bitmap Allocation – individual bits in a bit vector flags used and free blocks, but is large and of a fixed
size as it corresponds to the entire disk (perhaps too large to hold in main memory) and expensive to
search. However, it's simple to find contiguous free space.
Titany answered the question on April 26, 2022 at 11:26


Next: What file allocation strategy is most appropriate for random access files?
Previous: How can the block count in an in order differ from the (file size / block size) rounded up to the nearest integer. Can the block...

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


Learn High School English on YouTube

Related Questions