311 views
0 votes
0 votes
One problem with contiguous allocation is that the user must preallocate
enough space for each file. If the file grows to be larger than the
space allocated for it, special actions must be taken. One solution to this
problem is to define a file structure consisting of an initial contiguous
area (of a specified size). If this area is filled, the operating system
automatically defines an overflow area that is linked to the initial
contiguous area. If the overflow area is filled, another overflow area
is allocated. Compare this implementation of a file with the standard
contiguous and linked implementations.

Please log in or register to answer this question.

Related questions

0 votes
0 votes
0 answers
1
ajaysoni1924 asked Mar 22, 2019
261 views
Consider a system that supports the strategies of contiguous, linked,and indexed allocation. What criteria should be used in deciding whichstrategy is best utilized for a...
0 votes
0 votes
0 answers
2
ajaysoni1924 asked Mar 22, 2019
154 views
Why must the bit map for file allocation be kept on mass storage, ratherthan in main memory?
0 votes
0 votes
0 answers
3
ajaysoni1924 asked Mar 22, 2019
224 views
What problems could occur if a system allowed a file system to bemounted simultaneously at more than one location?