nerdexam
Cisco

210-255 · Question #144

Which of the following Linux file systems not only supports journaling but also modifies important data structures of the file system, such as the ones destined to store the file data for better perfo

The correct answer is C. Ext4. Ext4 is the only option listed that is both a journaling file system and one that introduces improved data structures - specifically extents - to enhance performance and reliability over its predecessors.

Host-Based Analysis

Question

Which of the following Linux file systems not only supports journaling but also modifies important data structures of the file system, such as the ones destined to store the file data for better performance and reliability?

Options

  • AGRUB
  • BLILO
  • CExt4
  • DFAT32

How the community answered

(48 responses)
  • A
    2% (1)
  • B
    2% (1)
  • C
    96% (46)

Why each option

Ext4 is the only option listed that is both a journaling file system and one that introduces improved data structures - specifically extents - to enhance performance and reliability over its predecessors.

AGRUB

GRUB (Grand Unified Bootloader) is a boot loader program used to load the operating system kernel, not a file system.

BLILO

LILO (Linux Loader) is a legacy Linux boot loader responsible for initializing the OS at startup, not a file system with journaling or data structure features.

CExt4Correct

Ext4 (Fourth Extended Filesystem) supports journaling to ensure file system consistency after crashes, and it also introduces the extent-based storage model, which replaces the indirect block mapping of Ext3. Extents are contiguous blocks of storage that reduce fragmentation and improve performance for large files. These structural modifications to how file data is stored distinguish Ext4 from a simple journaling-only file system.

DFAT32

FAT32 (File Allocation Table 32) is a legacy file system that uses a flat allocation table structure and does not support journaling or extent-based data structures.

Concept tested: Ext4 journaling and extent-based file system structure

Source: https://www.kernel.org/doc/html/latest/filesystems/ext4/index.html

Topics

#Linux file systems#journaling#Ext4#file system performance

Community Discussion

No community discussion yet for this question.

Full 210-255 Practice