Module 4.3 Flashcards

1
Q

In the context of a file system, a journal is an _________ containing a ______ which the file system ________________
system’s metadata.

A

In the context of a file system, a journal is an on-disk structure containing a kind
of log in which the file system stores what it is about to change in the file
system’s metadata.

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

A file system is an ________ __ ___ __ _____ on a storage device.

A

A file system is an organization of data and metadata on a storage device.

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

FAT Stands for?

FAT uses a table which ____________ about which areas belong to which files, are free or possibly unusable, and _____ each file is stored on the disk.

Max size – ____
 Max file size – ______
Slow with large disks

A

File Allocation Table

FAT uses a table which centralizes the information about which areas belong
to which files, are free or possibly unusable, and where each file is stored on
the disk.

 Max size – 2TB
 Max file size – 4GB

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

NTFS Stands for?

Starting with Windows NT ____, NTFS is the default file system of the Windows
NT family

Max size – _____
Max file size – _____

A

New Technology File System

Starting with Windows NT 3.1, NTFS is the default file system of the Windows
NT family

Max size – 256TB
Max file size – 16TB

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

EXT Stands for?

The Extended File System, or ext, was implemented in April _____ as the first
file system created specifically for the ____ _____

ext could handle file systems up to ________ in size

A

Extended File System

The Extended File System, or ext, was implemented in April 1992 as the first
file system created specifically for the Linux kernel.

ext could handle file systems up to 2 gigabytes (GB) in size

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

There are other members in the extended file system family:

 _____, the second extended file system.
 ______, the third extended file system.
 _____, the fourth extended file system.

A

There are other members in the extended file system family:

 ext2, the second extended file system.
 ext3, the third extended file system.
 ext4, the fourth extended file system

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

ext2 was initially designed by French software developer ______ _____

The _____ _________-_____ filesystem for Linux.

Ext2:
 Solid, easily upgradeable, no _______
 Max size – _____
 Max file size – _____

A

ext2 was initially designed by French software developer Rémy Card.

The first commercial-grade filesystem for Linux.

Ext2:
 Solid, easily upgradeable, no journal
 Max size – 32TB
 Max file size – 2TB

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

ext3 used to be the ______ file system for many popular Linux distributions.

Its main advantage over Ext2 is ________ - improves reliability and eliminates the need to check the file system after an _________ _________.

Very reliable journaled file system
 Easily upgradeable from Ext2
 Max size – ______
 Max file size – ________

A

ext3 used to be the default file system for many popular Linux distributions.

Its main advantage over Ext2 is journaling - improves reliability and eliminates
the need to check the file system after an unclean shutdown.

Very reliable journaled file system
 Easily upgradeable from Ext2
 Max size – 32TB
 Max file size – 2TB

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

Ext4 is the default file system for many Linux distributions including Debian and
Ubuntu.

maximum individual file size can be from ____ to ________
 Overall maximum Ext4 file system size is __________.
1 PB = 1024 TB (terabyte)
 Directory can contain a maximum of 64,000 subdirectories (as opposed to
32,000 in Ext3)

A

Ext4 is the default file system for many Linux distributions including Debian and
Ubuntu.

maximum individual file size can be from 16 GB to 16 TB.
 Overall maximum Ext4 file system size is 1 EB (exabyte). 1 EB = 1024 PB
(petabyte) 1 PB = 1024 TB (terabyte)
 Directory can contain a maximum of 64,000 subdirectories (as opposed to
32,000 in Ext3)

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

File Hierarchy Standard(FHS)

is maintained by __________

A

FHS is maintained by the Linux Foundation

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

FHS directories:

/
/bin
/boot
/dev
/etc
/home
/lib
/var

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

Partitioning is a way to divide a hard drive into _______ ____ ______
 A partition acts as an independent drive and refers to a contiguous set of
blocks on the drive.
 Each partition can have __ ____ _____
________

A

Partitioning is a way to divide a hard drive into many logical drives.
 A partition acts as an independent drive and refers to a contiguous set of
blocks on the drive.
 Each partition can have its own file system.

A sector has a fixed size (512 bytes)
regardless of where on the disk the sector
resides.

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

Dual Boot System:

It is possible to have more than ____ ____ on a physical disk.

Two popular boot manager programs are _____ and _____

A

It is possible to have more than one OS on a physical disk.

Two popular boot manager programs are LILO and GRUB

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

Sector 0 of the disk is called the _________________and is used to _____
the operating system.

When the computer is booted, the BIOS, reads and _____ ___ ______, locates
the active partition, reads in its first block, called the boot block and executes it.

A

Sector 0 of the disk is called the Master Boot Record (MBR) and is used to boot
the operating system.

When the computer is booted, the BIOS, reads and executes the MBR, locates
the active partition, reads in its first block, called the boot block and executes it.

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

Fragmentation is a term used in reference to having _______ on a disk.

Two types of fragmentation are Internal and External.

A

Fragmentation is a term used in reference to having “wholes” on a disk.

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

_____ command to see which hard drives are available on your system

the following command to partitions a hard drive named sdb:

A

lsblk command to see which hard drives are available on your system

sudo fdisk /dev/sdb

17
Q

mkfs is used to ____ ___ _____ _________ on a device, usually a hard disk partition.

A

mkfs is used to build a Linux filesystem on a device, usually a hard disk
partition.

18
Q
A
19
Q

What is the mount command?

A

sudo mount -t type device dir

For example, the command “sudo mount -t ext4 /dev/sdb1 /mnt/sdb1dir” will
attach the sdb1 partition to the sdb1dir directory.

20
Q

What is fstab?

A

a configuration table used to simplify the
mounting and unmounting file systems.

21
Q

Fstab structure:

A