Filesystem Formats Flashcards

(22 cards)

1
Q

What do filesystem formats do?

A

Organize and manage data across different Linux environments

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Name key Linux filesystem formats.

A

ext4, XFS, btrfs, tmpfs

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is ext4 known for?

A

Reliability and efficiency

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Command to create ext4?

A

mkfs.ext4 /dev/sdXN

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What does ext4 support?

A

Large files (up to ~16TB with 4KB block size), very large filesystems (approaching exabyte scale)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Characteristics of ext4?

A

Disk-based storage using memory for caching and metadata, minimal memory restrictions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Common use of ext4?

A

Desktop and server environments

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is XFS designed for?

A

High performance and scalability

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Command to create XFS?

A

mkfs.xfs /dev/sdXN

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What does XFS support?

A

Very large files and volumes, often scaling into petabytes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Characteristics of XFS?

A

Optimized for disk-based storage performance, minimal memory restrictions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Ideal use case for XFS?

A

Enterprise environments handling large files and heavy workloads

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is btrfs?

A

Next-generation filesystem with advanced features

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Command to create btrfs?

A

mkfs.btrfs /dev/sdXN

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Command to inspect btrfs layout?

A

btrfs filesystem show

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What does btrfs support?

A

Snapshots, subvolumes, built-in data integrity checks

17
Q

Characteristics of btrfs?

A

Flexible, dynamic data management; performance varies by workload

18
Q

Ideal use case for btrfs?

A

Environments needing incremental backups and advanced data management

19
Q

What is tmpfs?

A

Temporary filesystem that resides entirely in RAM

20
Q

Command to create tmpfs?

A

sudo mount -t tmpfs -o size=512M tmpfs /mnt/tmp

21
Q

Characteristics of tmpfs?

A

Extremely fast read/write speeds, size limited by RAM, data not persistent across reboots

22
Q

Ideal use case for tmpfs?

A

Performance-critical tasks requiring temporary storage