Chapter 3 Flashcards

1
Q

What is an IRQ? pg 112

A

is a hardware signal sent to the processor that temporarily stops a running program and allows a special program, an interrupt handler, to run instead. Interrupts are used to handle such events as data receipt from a modem or network, key presses or mouse movements, and operating system timer requests to switch from process execution into kernel mode.

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

HAL Daemon Hardware Abstraction Layer(HAL) Daemon (hald) pg 120

A

is a user space program that runs at all times(that is a daemon) and provides other user-space programs with information about available hardware.

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

D-Bus Desktop Bus pg 120

A

mechanism that allows communication between multiple computer programs (that is, processes) concurrently running on the same machine.[3] D-Bus was designed as part of the effort of the freedesktop.org project to standardize services provided by Linux desktop environments such as GNOME and KDE.

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

udev pg 120

A

is a device manager for the Linux kernel. As the successor of devfsd and hotplug, udev primarily manages device nodes in the /dev directory

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

table 3.3 pg 121

-v

A

Increases verbosity of output.

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

-n

A

Displays information in numeric codes rather than translating the codes to manufacture and devices.

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

-nn

A

Displays both the manufacturer and device names and their associated numeric codes.

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

– version do??

A

Displays version information

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

How can you back up your MBR partitions in linux?

A

sfdisk -d /dev/sda >sda-backup.txt

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

How can you restore the back up?

A

sfdisk -f /dev/sda

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

what is Ext2fs (Second Extended File System)

A

is the traditional Linux Native file system.

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

what is Ext3fs?

A

is the same as Ext2fs with a journal added.

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

how do you extract a file in linux?

A

write internal-file external-file

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

what is the most important linux disk partition

A

root(/) partition which is at the base of the linux tree.

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

Explain how file systems are mounted in linux?

A

The mount command ties a file system to a Linux directory; once the file system is mounted, its files can be accessed as part of the mount directory. The /etc/fstab file describes permanent mappings of file systems to mount points; when the systems boots it automatically mounts the describe file systems unless they use the noauto option (which is common for removable disks)

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