System Architecture Flashcards

1
Q

modprobe

A

Automatically loads any dependent modules and is usually the preferred way of loading kernel modules

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

lsusb

A
  • A utility for displaying the information about USB buses and associated connected devices in the system
  • Reads /dev/bus/usb
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

/proc/interrupts

A

Shows the IRQs in use on the system

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

/proc/dma

A

Displays DMA addresses in use on the system

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

DMA address

A

An alternate method of communicating with I/O ports

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

lsmod

A

Lists modules currently loaded

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

insmod

A

Older method used to insert modules into the running Linux kernel

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

rmmod

A

Older method used to remove modules from the running Linux kernel

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

dmesg

A

Extracts information about the boot process

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

kernel

A

The main part of the Linux OS, responsible for the entire OS. threads, devices, filesystems and video

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

BIOS

A

Responsible for preparing the system to boot, finding the CPU, memory and disk in order to begin the boot process

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

/var/log/messages

A

Contains detailed post boot messages for your system as well as messages from applications that communicate with your kernel.

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

/etc/inittab

A

Holds run level configurations

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

shutdown

A

Used to power off the machine

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

shutdown -k

A

Send warning of impending shutdown but do not shut down

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

shutdown -r

A

Reboot after shutdown

17
Q

shutdown -h

A

Halt or power off the system

18
Q

shutdown -P

A

Half action to turn off power

19
Q

shutdown -f

A

Skip fsck on next boot

20
Q

shutdown -F

A

Force fsck on next boot

21
Q

shutdown -c

A

Cancel a waiting shutdown

22
Q

shutdown -t

A

Can specify the amount of time before shutting down

23
Q

init

A
  • Can be used to change run level and shutdown machine

- Last process in the boot process

24
Q

Run Level 0

A

Used to power off the system

25
Q

Run Level 1

A
  • Single user mode

- Used for low-level system maintenance

26
Q

Run Level 2

A

On Debian, a full multi-user mode with X running and a graphical login (undefined on all other distributions)

27
Q

Run Level 3

A

On most distributions, a full multi-user mode with non-graphical login

28
Q

Run Level 4

A

Usually undefined and available for customization

29
Q

Run Level 5

A

Graphical login for most distributions

30
Q

Run Level 6

A

Used to reboot the system

31
Q

init 1

A

Changes to run level 1

32
Q

id:2:initdefault

A

Says the default run level is 2