101.1 Determine and Configure H/W Settings: Filesystems and Device FIles Flashcards

1
Q

Filesystems and Device Files

Linux treats everything on a system as a

A

File
to include hardware devices

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

Filesystems and Device Files

Info about system h/w and state of the system is contained in this ‘pseudofilesystem’

A

procfs

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

Filesystems and Device Files

something that looks like a system device though it is not associated with real hardware and it exposes kernel info in a human readable format

A

‘pseudofilesystem’

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

Filesystems and Device Files

Usually where the procfs filesystem is mounted

A

/proc

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

Filesystems and Device Files

Within the /proc directory you will find directories that correspond in label (number) to the associated “_____” of running processes

A

Process ID

PID

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

Filesystems and Device Files

file or link to another file containing info on all locally mounted file systems

A

/proc/mounts

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

Filesystems and Device Files

shows info about the interrupts in use in the system and what they are associated with - the h/w that is using them

A

/proc/interrupts

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

Filesystems and Device Files

one or more addresses that id a device and associated kernel modules

A

/proc/ioports

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

Filesystems and Device Files

Direct Memory Access (DMA) - values used by H/W to access system memory directly (no CPU involvement)

A

/proc/dma

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

Filesystems and Device Files

USB device IDs and the kernel modules associated with them

A

/proc/usb

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

Filesystems and Device Files

PCI device IDs and the kernel modules associated with them

A

/proc/pci

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

Filesystems and Device Files

Another ‘pseudofilesystem’ that contains info about system H/W

A

sysfs

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

Filesystems and Device Files

sysfs was designed to address some of the problems associated with the procfs method

A

Unstructured data

both h/w and s/w info was consolidated in the structure

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

Filesystems and Device Files

the ‘sysfs’ filesystem is mounted here

A

/sys

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

Filesystems and Device Files

Within the sys directory you will find directories that correspond to

A

system h/w and kernel modules associated with them

physical | Virtual

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

Filesystems and Device Files

the kernel device manager

A

udev

17
Q

Filesystems and Device Files

directory containing device data that derives info from /sys or sysfs

A

/dev

18
Q

Filesystems and Device Files

devices added or removed on a live system will engage the

A

udev system

19
Q

Filesystems and Device Files

the udev system detects and configures devices and make them available aka

A

‘hotplug’
– or –
‘hotswap’

20
Q

Filesystems and Device Files

related to the udev system and allows desktop apps to send messages to other apps or receive messages from the linux kernel

A

D-Bus