给定特定 inode 结构的最大文件大小?
假设 UNIX 文件系统有一些限制——例如 2 KB 块和 8B 磁盘地址。如果 inode 包含 13 个直接条目以及每个单个、两个和三个间接条目,那么最大文件大小是多少?
Suppose a UNIX file system has some constraints--say, 2 KB blocks and 8B disk addresses. What is the maximum file size if inodes contain 13 direct entries, and one single, double, and triple indirect entry each?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这为您解释:
http://www.cis.temple。 edu/~ingargio/cis307/readings/stable.html
将 8KB 替换为 2KB,并调整较小块大小的条目。
从你的问题中我不清楚这 13 个条目是否包括单打、双打和三打,或者它们是否是分开的,但这应该很容易调整 - 只需将表达式中的 10 更改为 13 即可。
我想我'已经正确调整了所有数学...仔细检查=|希望这不是我为你做的家庭作业;)
This explains it for you:
http://www.cis.temple.edu/~ingargio/cis307/readings/stable.html
Swap 8KB for your 2KB, and adjust the entries for the smaller block size.
It's not clear to me from your question if the 13 entries include the singles, doubles and triples, or if they are separate, but that should be easy to adjust -- just change the 10 in the expression to a 13.
I think I've adjusted all the math correctly... double check it =| Hope this isn't homework I did for you ;)
1 个块中有多少个指针?
文件系统中有多少个指针?
因此文件系统的大小为:
How many pointers in 1 block?
How many pointers in the file system?
Therefore the size of the file system is:
我们有一个可用于竞争性考试的捷径,如下所示:
We hv a shortcut that can be used for competitive exams, given as :