Windows, Linux, Mac OS File System Types

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/38

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 5:14 PM on 5/25/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

39 Terms

1
New cards

What does high-level formatting do to a partition on a disk device?

Prepares it for use with an operating system by creating a file system on the disk partition.

2
New cards

What is NTFS, who developed it, and what OS is it for?

A proprietary file system developed by Microsoft for use with Windows.

3
New cards

What addressing scheme does NTFS provide, and what does that allow?

A 64-bit addressing scheme, allowing for very large volumes and file sizes.

4
New cards

In theory, what is the maximum NTFS volume size, and what are actual implementation limits?

In theory 16 Exabytes; actual implementations limited to between 137 GB and 256 Terabytes (depending on Windows version and allocation unit size).

5
New cards

What is NTFS journaling?

Data written to an NTFS volume is re-read, verified, and logged; if a problem occurs, the sector is marked bad and data relocated (faster/more reliable recovery after power outages and crashes).

6
New cards

What are NTFS snapshots used for?

Allow Volume Shadow Copy Service to make read-only copies of files at given points in time even if locked; supports file version history (revert changes) and backup operations.

7
New cards

What NTFS security features are listed?

File permissions and ownership, file access audit trails, quota management, and encrypting file system (EFS) to ensure only authorized users can read/modify file data.

8
New cards

What does NTFS POSIX compliance support, and what Windows behavior is noted?

Supports case-sensitive naming, hard links, and other key features required by UNIX/Linux apps; Windows does not insist upon case-sensitive naming (though NTFS is case-sensitive capable and preserves case).

9
New cards

What does NTFS indexing do?

Indexing Service creates a catalog of file/folder locations and properties, speeding up searches.

10
New cards

What are NTFS dynamic disks?

A disk management feature allowing space on multiple physical disks to be combined into volumes.

11
New cards

What NTFS features are not supported in Windows Home editions, and what max NTFS volume size is noted for latest feature updates?

Windows Home editions do not support dynamic disks or encryption; latest Windows feature updates increased maximum possible NTFS volume size to 8 Petabytes (8,000 TB).

12
New cards

What file system must Windows be installed to?

An NTFS-formatted partition.

13
New cards

What is the significant drawback of NTFS regarding other operating systems?

Not fully supported by operating systems other than Windows (macOS can read but cannot write; Linux distros/utilities may support to some degree).

14
New cards

What is ReFS, and what is it designed for?

Microsoft's newest file system for use with Windows; designed to make data easy to access, handle large amounts of data efficiently for different tasks, and keep data safe and protected from damage.

15
New cards

What ReFS resiliency benefit is listed?

Detect corrupted files/data and repair them while still online and in use, even in virtualized environments.

16
New cards

What ReFS high performance benefit is listed?

Storage solution improvement and optimization increases performance with large data sets/workloads through configuration of two logical storage groups or tiers.

17
New cards

What ReFS scalability benefit is listed?

Supports millions of terabytes of data without impacting performance metrics.

18
New cards

Who is ReFS supported for (per the blurb)?

Specialized customers requiring increased availability, resiliency, and scaling; NTFS remains predominant for many general users.

19
New cards

What is FAT32 named for, and how does FAT organize data?

Named for the file allocation table; FAT provides links from one allocation unit to another.

20
New cards

What does FAT32 nominally support for volume size, and what is its maximum file size?

Nominally supports volumes up to 2 TB; maximum file size is 4 GB minus 1 byte.

21
New cards

What key NTFS-like features does FAT32 not support?

Does not support any of the reliability or security features of NTFS.

22
New cards

What is FAT32 typically used to format, and when is it useful?

Typically used to format the system partition (holds the boot loader); useful for removable drives and memory cards intended for multiple operating systems and devices.

23
New cards

What is exFAT, what is it designed for, and what size does it support?

Extended File Allocation Table; a 64-bit version of FAT designed for removable hard drives and flash media; supports large volumes up to a recommended maximum size of 512 TB.

24
New cards

What access/security support does exFAT have (per the blurb)?

Support for access permissions but not encryption.

25
New cards
What support do Linux and macOS provide for FAT32 and NTFS as removable media?
They provide some degree of support for FAT32 and NTFS as removable media.
26
New cards
What do Linux and macOS use to format fixed disks?
They use dedicated file systems to format fixed disks.
27
New cards
What file system do most Linux distributions use to format partitions on mass storage devices?
Some version of the extended (ext) file system.
28
New cards
What does ext4 deliver and support?
Better performance and supports journaling.
29
New cards
In Linux, what is FAT/FAT32 designated as?
VFAT.
30
New cards
Besides ext, what alternatives will Linux also support?
FAT/FAT32 (VFAT) and XFS.
31
New cards
When was XFS introduced, and what was it called?
Introduced in 1993 as the High Performance Scalable File System.
32
New cards
What type of file system did XFS provide?
A 64-bit journaling file system.
33
New cards
What is the default file system for Red Hat Enterprise Linux (RHEL) installations?
XFS.
34
New cards
What protocol can be used to mount remote storage devices to the local file system of the Linux OS?
Network File System (NFS).
35
New cards
What does using NFS allow you to do?
Connect to a file resource on another physical system as if the file system was directly attached to the user's own system.
36
New cards
What file system do Apple Mac workstations and laptops use, and what does it support?
Apple File System (APFS); supports journaling, snapshots, permissions/ownership, and encryption.
37
New cards
What 5 things must software provide to qualify as an operating system?
(1) Communicate with hardware (2) Provide a user interface (GUI/CLI) (3) Provide a file system (4) Provide a platform for applications (5) Provide security mechanisms (accounts/policies, etc.)
38
New cards
What are the two main user interface types an OS provides?
Graphical user interface (GUI) and command-line interface (CLI)
39
New cards
What’s notable about Unix ?
Developed by Bell Labs in the 1960s; powerful “out of the box”; multitasking and multi-user early on; mostly used on servers nowadays