文档介绍:Exam : 117-102
Title : General Linux, Part 2
Ver : 02-25-09
117-102
QUESTION 1:
mand would load the module and all its dependancies?
A. modinfo -a msdos
B. lsmod -a msdos
C. modprobe msdos
D. insmod -d msdos
Answer: C
Explanation: mand is used to load or unload the modules as well as
it's dependencies from the kernel.
To Load the module:
modprobe modulename
To unload the module
modprobe -r modulename
QUESTION 2:
mand will unload a kernel module?
A. rmmod
B. unmod
C. delmod
D. modprobe
E. unloadmod
Answer: A
Explanation: rmmod is the simple program, which remove the modules from the
kernel.
To unload module from kernel.
rmmod modulename
or
modprobe modulename
QUESTION 3:
CORRECT TEXT
The mand will list the currently loaded kernel modules.
Answer: lsmod
Explanation: mand displays all modules loaded by kernel as well as
- The Power of Knowing
117-102
modules status on current session.
See the sample output of mand
Module Size Used by
i915 81349 2
md5 4033 1
ipv6 232705 10
parport_pc 24705 1
lp 12077 0
parport 37129 2 parport_pc,lp
autofs4 23237 0
sunrpc 157093 1
dm_mod 54741 2
button 6481 0
battery 8901 0
ac 4805 0
raid1 19905 1
uhci_hcd 31065 0
ehci_hcd 30917 0
snd_intel8x0 33769 0
snd_ac97_codec 63889 1 snd_intel8x0
snd_pcm_oss 49017 0
snd_mixer_oss 17985 1 snd_pcm_oss
snd_pcm 96841 2 snd_intel8x0,snd_pcm_oss
snd_timer 29893 1 snd_pcm
snd_page_alloc 9673 2 snd_intel8x0,snd_pcm
snd_mpu401_uart 8769 1 snd_intel8x0
snd_rawmidi 26597 1 snd_mpu401_uart
snd_seq_device 8137 1 snd_rawmidi
snd 54949 9
snd_intel8x0,snd_ac97_codec,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_timer,snd_mpu401_uart,snd_raw
soundcore 9889 1 snd
8139too 25921 0
mii 4673 1 8139too
floppy 58481 0
ext3 116809 6
jbd 71257 1 ext3
QUESTION 4:
CORRECT TEXT
You wi