4: Create Partitions Flashcards

1
Q

A data structure that is used by an operating system to store, retrieve, organize, and manage files and directories on storage devices. These maintain information such as date of creation and modification of individual files, the size of files on the storage device, the type of files and permissions associated with files. It also provides a structured form for data storage.

A

File system

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

older file system that is compatible with many different operating systems, including all versions of Unix, Windows and macOS. It does not provide the same capabilities of more modern file systems and is typically used for compatibility reasons

A

FAT

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

This used to be the native Linux file system of some older releases. Still supported in current releases of Linux

A

ext2

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

This is an improved version of ext2. In the event of an abrupt system shutdown this is much faster in recovering data and better ensures data integrity

A

ext3

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

This is one of two default file systems for Linux distributions. Backwards compatible with ext2 and ext3. Supports journaling, volumes of up to one exbibyte, and files up to 16 TB in size. This is the default file system for Ubuntu installations

A

ext4

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

64-bit, high performance journaling file system that provides fast recovery and can handle large files efficiently. Default file system for CentOS/RHEL 7 instlattions

A

XFS

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

object that stores metadata about a file or directory on a file system

A

inode

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

method by which a file system records changes that have not yet been made to the file system itself. this enables the file system to quickly recover after an unexpected interruption, such as a system crash, because the system can reference pending changes to resume where it left off

A

journaling

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

vreated as a common software interface that sits between the kernel and real file systems. it translates a real file system’s details to the kernel so that the file system appears identical to any other file system

A

Virtual File System

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

syntax for setting ext# file system labels

A

e2label /dev/{device name}{partition number} {label name}

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

syntax for setting XFS file system labels

A

xfs_admin -L {label name} /dev/{device name}{partition number}

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