I'm doing a lab in this course and I'm asked to : "Load the module for vfat support; does it have any dependencies ?"
The answer for this lab is these commands :
modprobe vfat
modinfo vfat
lsmod | grep vfat
However, on my Ubuntu 18.04 LTS machine when I run 1st and 3rd commands, I don't get any output and when I run :
modinfo vfat
I get
modinfo: ERROR: Module vfat not found.
How should I approach this lab ?
vfatin Ubuntu 5.0 kernel any more. But FAT FS works. – Pilot6 Jan 01 '20 at 21:49grep CONFIG_VFAT /boot/config-$(uname -r)? if you seeCONFIG_VFAT_FS=ythen afaik it means that your running kernel has vfat built-in (rather than loadable as a module). – steeldriver Jan 01 '20 at 23:06FAT FS? I've triedmodprobe fatbut then when I dolsmodit is not shown.@steeldriver yes
grep CONFIG_VFAT /boot/config-$(uname -r)returnsCONFIG_VFAT_FS=yso that's why I can't load it then, allright, thanks.
– Tomas.R Jan 02 '20 at 08:13