Chapter 3 Flashcards
What is an IRQ? pg 112
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.
HAL Daemon Hardware Abstraction Layer(HAL) Daemon (hald) pg 120
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.
D-Bus Desktop Bus pg 120
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.
udev pg 120
is a device manager for the Linux kernel. As the successor of devfsd and hotplug, udev primarily manages device nodes in the /dev directory
table 3.3 pg 121
-v
Increases verbosity of output.
-n
Displays information in numeric codes rather than translating the codes to manufacture and devices.
-nn
Displays both the manufacturer and device names and their associated numeric codes.
– version do??
Displays version information
How can you back up your MBR partitions in linux?
sfdisk -d /dev/sda >sda-backup.txt
How can you restore the back up?
sfdisk -f /dev/sda
what is Ext2fs (Second Extended File System)
is the traditional Linux Native file system.
what is Ext3fs?
is the same as Ext2fs with a journal added.
how do you extract a file in linux?
write internal-file external-file
what is the most important linux disk partition
root(/) partition which is at the base of the linux tree.
Explain how file systems are mounted in linux?
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)