Filesystems (ext bla bla bla) Flashcards
(10 cards)
What are some common Linux filesystems in use today?
Common Linux filesystems include ext2, ext3, ext4, vfat, exfat, and xfs.
How many filesystems can Linux support?
Linux can support upward of 50 filesystems.
What is the primary function of a filesystem?
The primary function of a filesystem is to store files on a partition.
What is the ext2 filesystem known for?
The ext2 filesystem is the traditional Linux filesystem.
Which filesystem is compatible with Microsoft FAT and FAT32?
The vfat filesystem is compatible with Microsoft FAT and FAT32.
Which filesystem is compatible with Microsoft FAT and FAT32?
The vfat filesystem is compatible with Microsoft FAT and FAT32.
Which filesystems support journaling?
The ext3, ext4, and xfs filesystems support journaling.
What is journaling in a filesystem?
Journaling is a process where each file operation is first recorded in a journal, so if a power failure occurs, the system can retrace and complete the operation.
Why are journaling filesystems more robust than non-journaling ones?
They can recover from interruptions like power failures, reducing the risk of data loss or corruption.
What advantages do journaling filesystems offer besides reliability?
They offer faster data transfer, improved indexing, and are commonly used on Linux servers.