nerdexam
GIAC

GCFA · Question #5

Which of the following type of file systems is not supported by Linux kernel?

The correct answer is D. FAT32. The Linux kernel does not have a standalone 'FAT32' filesystem driver - FAT32 support is handled by the vFAT module, so 'fat32' is not a recognized kernel filesystem type on its own.

Section 6: Deployment

Question

Which of the following type of file systems is not supported by Linux kernel?

Options

  • AvFAT
  • BNTFS
  • CHFS
  • DFAT32

How the community answered

(47 responses)
  • A
    4% (2)
  • B
    9% (4)
  • C
    15% (7)
  • D
    72% (34)

Why each option

The Linux kernel does not have a standalone 'FAT32' filesystem driver - FAT32 support is handled by the vFAT module, so 'fat32' is not a recognized kernel filesystem type on its own.

AvFAT

vFAT is natively supported by the Linux kernel via the vfat module, which handles the FAT family including long filename extensions.

BNTFS

NTFS is supported by the Linux kernel through the ntfs and ntfs3 drivers, providing read and write access to NTFS-formatted partitions.

CHFS

HFS (Apple Hierarchical File System) is supported by the Linux kernel via the hfs module (CONFIG_HFS_FS), enabling access to older Apple-formatted volumes.

DFAT32Correct

The Linux kernel provides FAT32 support through the vFAT driver (CONFIG_VFAT_FS), not as a separately named 'FAT32' module. When mounting, the filesystem type used is 'vfat', meaning FAT32 has no independent kernel driver identity and is subsumed under the vFAT layer.

Concept tested: Linux kernel native filesystem driver support

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

Topics

#Linux kernel#file system support#FAT32#NTFS

Community Discussion

No community discussion yet for this question.

Full GCFA Practice