101-500 Exam QuestionsBrowse all questions from this exam

101-500 Exam - Question 79


Which of the following Linux filesystems preallocate a fixed number of inodes when creating a new filesystem instead of generating them as needed? (Choose two.)

Show Answer
Correct Answer: BD

The ext3 and ext2 filesystems preallocate a fixed number of inodes when creating a new filesystem instead of generating them as needed. Ext3 is built on top of ext2, adding journaling capabilities, but retains the same inode preallocation structure. This means both ext3 and ext2 have a static allocation of inodes.

Discussion

3 comments
Sign in to comment
blk_542Options: BD
Nov 19, 2022

Look like B and D, since it is true for ext2, and ext3 is just an ext2 with a journal. Regarding ext2: http://www.science.unitn.it/~fiorella/guidelinux/tlk/node101.html

ResekoOptions: BD
Aug 31, 2023

JFS Inode Dynamic ext3 Inode Static XFS Inode Dynamic ext2 Inode Static procfs N/A (Virtual System)

waisOptions: BC
Jan 3, 2022

I think B and C are correct!!

clavex
Jan 15, 2022

XFS dynamically allocates inodes.