我想了解一个问题。我找到了一点,现在我被卡住了。请帮帮我。
问题是
基于i-node的文件系统的块大小为'b'字节。在i节点中有数据块的'q'直接指针和一个间接指针。每个指针的长度为“p”位。给出q< 2 ^ p<度(b * 8)/ P。文件系统可以处理的最大文件的大小是多少?
这是我的方法
size of the direct pointed blocks = q*b
max pointers in a block = 8*b/p
size of the blocks pointed by indirect pointer = 8*b*b/p
So the largest file = qb + 8*b*b*/p
我很困惑如何使用给定的事实** q< 2 ^ p< (b * 8)/ p **在答案中。
有人可以帮我吗?