recategorized by
370 views
3 votes
3 votes

A variation of an inode is called a linode (short for little node). Assume the size of a disk block is $4K$ bytes and a disk block can contain $2K$ disk block addresses. A linode has the following structure:

  • entries $0-6$ are direct disk block pointers
  • entry $7$ is a single indirect block pointer
  • entry $8$ is a double indirect block pointer

The maximum size of a file (rounded to the nearest GB) using a linode will be _________

recategorized by

1 Answer

Best answer
5 votes
5 votes
It would be $(7 \ast 4K) + (2K \ast 4K) + (2K\ast 2K \ast 4K) $

$\quad = 28K + 8M + 16G  \approx 16 GB$.

So, the correct answer is $16$.
selected by
Answer:

Related questions

2 votes
2 votes
1 answer
1
gatecse asked Feb 1, 2021
182 views
Consider a FAT file system where disk is divided into $M\;\text{byte}$ blocks, and every FAT entry can store an $N\;\text{bit}$ block number. What is the maximum size of ...
6 votes
6 votes
2 answers
2
gatecse asked Jan 26, 2021
606 views
Consider a secondary storage system of size $\text{8 TB},$ with $\text{2048-byte}$ sized blocks. Assume that the file system uses a multilevel inode data structure to tra...
5 votes
5 votes
1 answer
3