Which of the following commands displays the physical path of the kernel module named dummy?



A.

modprobe -i dummy

B.

modinfo -n dummy

C.

modpath -v dummy

D.

depmod -n dummy

E.

modshow -p dummy

題解

選項A,「modprobe」指令可以用來增減核心模組。「-i」參數可以用來忽略模組設定檔中的「install」和「remove」命令。

選項B,「modinfo」可以用來查看指定核心模組的資訊。「-n」參數可以查看指定核心模組的檔案路徑。此為正確答案。

選項C,沒有「modpath」指令。

選項D,「depmod」指令用來產生「modules.dep」等檔案。

選項E,沒有「modshow」指令。