Workbook 2: Hardware Flashcards
Which process types are supported by Red Hat Enterprise Linux?
Intel and AMD x86 32 bit processors, Intel and AMD x86 64 bit processors, IBM s/390 processors, IBM series Z processors
The /proc filesystem provides what function?
It provides an interface for humans to view information in the kernel.
What is an expected device name for a USB drive on a system ?
/dev/sdb
Which file contains a snapshot of the kernel’s dmesg buffer soon after the most recent boot?
/var/log/dmesg
Which command displays the current contents of the kernel’s dmesg buffer?
dmesg
What command can be used to monitor hardware changed dynamically?
lshal -m
In what directory are kernel modules found?
/lib/modules/kernel-version/
What command is used to request the removal of a module?
modprobe -r
Which of the following would be a conventionally named static kernel image?
/boot/vmlinuz-2.6.32-8
Which of the following could be a reason that the module cannot be removed?
The module’s usage count is greater than 0. OR The module is depended on by another module which is in use.
What command is used to list all currently inserted kernel modules?
lsmod
Which command can be used to request the insertion of a kernel module?
modprobe
What configuration file is examined whenever modprobe inserts a module?
/etc/modprobed/*.conf
Which file contains values for /proc/sys/ directory entries which are set automatically at boottime?
/etc/sysctl.conf
After editing the file mentioned in the previous question, what command can be run to immediately implement the changes?
sysctl -p