This document discusses different disk allocation methods including contiguous, linked, and indexed allocation. Contiguous allocation stores files in contiguous disk blocks but can lead to external fragmentation. Linked allocation stores non-contiguous blocks linked through addresses in each block, avoiding fragmentation. Indexed allocation uses an index block to point to each block of a file, allowing for random access but requiring additional space for pointers.