File Systems

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/16

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

17 Terms

1
New cards

What does a file system do?

Stores data on storage devices, performs I/O operations

2
New cards

What are the 3 ext file systems?

ext2, ext3, ext4

3
New cards

What is the maximum file and volume size in ext2?

2TB file, 4TB volume

4
New cards

What is the downside to ext2?

It takes a long time to recover after an abrupt shutdown

5
New cards

What does ext3 have that makes it better than ext2?

Journaling

6
New cards

How does journaling work?

It keeps a log of the most recent transactions and whether they are pending or complete

7
New cards

What is the maximum file and volume size in ext4?

16TB file, 1Exabyte volume

8
New cards

What is special about btrfs?

It uses copy on write

9
New cards

What are btrfs snapshots?

An image of all your data that can be saved to external media

10
New cards

What command do you use to create file systems?

mkfs -t

11
New cards

What command do you use to make a swap file system?

mkswap

12
New cards

What must you do before creating a swap partition?

Make the partition a swap partition

13
New cards

What command do you use to turn on a swap partition? What about turning it off?

swapon /dev/partiton, swapoff /dev/partition

14
New cards

What command do you use to unmount file systems?

umount /dev/*

15
New cards

What is the file path for the config file that makes mounted file systems persistent?

/etc/fstab

16
New cards

What is the disadvantage of the mount command?

All fs mounted will be unmounted when the system reboots

17
New cards

What is the format you add entries to the fstab file in?

/dev/* /mountpoint fs defaults 1 2