8.4.1 Flashcards

1
Q

Create an ext2, ext3, or ext4 file system. Command options include the following:

A

mke2fs

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

You cannot format an extended partition. However, you can create _________ partitions inside an extended partition and format them.

A

logical

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

File systems use an inode (information node) table to store information about files. An inode specifies where a file’s data physically exists on a disk. Inodes also contain additional information, including

A

File size
Modification, access, and creation times
Permissions
Ownership

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

Each file system has a superblock, which contains information about the file system, such as

A

File system type (such as ext2 and ext3)
Size (for example, 10GB or 360GB)
Status

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

You should mount storage devices in _______ directories.

A

empty

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

The /mnt and /media directories (depending on the system configuration) are directories that contain mount points specifically for __________

A

external storage devices

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

The_______file identifies devices to mount each time the system boots. When the system boots, it automatically mounts the volumes identified in the file. The file contains entries with six fields that control how a device is mounted.

A

/etc/fstab

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

The following is a typical fstab entry:

A

/dev/sda3 /mnt/disk1 ext3 auto,ro,nosuid,users 0 1

[device_to_mount] [mount_point] [file_system_type] [options] [dump] [fsck]

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

[device_to_mount] [mount_point] [file_system_type] [options] [dump] [fsck]

A

this is a standard format for linux entry

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

is the path to the device file or the label that describes the storage device to be mounted.

A

device to mount

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

specifies where to mount the device. This is the directory where the data on the device can be accessed.

A

mount point

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

specifies the type of file system that has been created on the storage device.

A

File_system_type

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

specify the additional options to be used when mounting the device. Multiple options are separated by commas. such as sync, async or auto

A

options

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

The _________ file tracks the currently mounted volumes on the system.

A

/etc/mtab

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

/procs/mounts

A

file contains entries for all currently mounted volumes on the system.

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