What command would load the module msdos.o and all its dependancies?
A.
modinfo -a msdos
B.
lsmod -a msdos
C.
modprobe msdos
D.
insmod -d msdos
Explanation:
Modprobe command 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