nerdexam
CompTIA

SK0-004 · Question #799

An administrator is configuring an application server. The application requires a filesystem with journaling capability. Which of the following is the administrator MOST likely to choose?

The correct answer is C. ext4. The question asks which filesystem supports journaling, a feature that ensures data integrity by logging changes before committing them to disk. ext4 is the correct choice as it is a widely used journaling filesystem in Linux server environments.

Server administration

Question

An administrator is configuring an application server. The application requires a filesystem with journaling capability. Which of the following is the administrator MOST likely to choose?

Options

  • Aext2
  • BDFS
  • Cext4
  • DFAT32

How the community answered

(59 responses)
  • A
    7% (4)
  • B
    3% (2)
  • C
    86% (51)
  • D
    3% (2)

Why each option

The question asks which filesystem supports journaling, a feature that ensures data integrity by logging changes before committing them to disk. ext4 is the correct choice as it is a widely used journaling filesystem in Linux server environments.

Aext2

ext2 is an older Linux filesystem that lacks journaling support entirely, making it vulnerable to data corruption and requiring a full fsck scan after unclean shutdowns.

BDFS

DFS (Distributed File System) is a Microsoft namespace service for organizing shared folders across multiple servers, not a local disk filesystem with journaling capability.

Cext4Correct

ext4 is a journaling filesystem that records changes to a journal before writing them to the main filesystem, protecting against data corruption during unexpected shutdowns or crashes. It is the default filesystem for most modern Linux distributions and supports large file sizes, extents, and fast fsck recovery. Journaling is enabled by default in ext4 via the 'has_journal' feature flag, making it well-suited for application servers requiring data integrity.

DFAT32

FAT32 is a legacy filesystem originally designed for DOS and Windows removable media that has no journaling support and is unsuitable for server application storage.

Concept tested: Linux journaling filesystem selection for servers

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

Topics

#ext4#journaling filesystem#Linux filesystem

Community Discussion

No community discussion yet for this question.

Full SK0-004 Practice