On Monday 29 January 2007 13:25, Jordi Espasa Clofent wrote:
- just try to use or modprobe it and find out by trial and error
- see which filesystems modules are available: find /lib/modules/$(uname -r)/kernel/fs -name "*.ko"
- look in the config for your kernel to see if something is enabled: grep CONFIG_UFS_FS /boot/config-$(uname -r)
- cat /proc/filesystems
That only shows you which filesystems are currently "loaded" (built into the kernel or loaded modules). Typically you'd like to know which filesystems you can do "mount -t blaha /..." on and then you'll have to go looking for modules in one way or the other.
/Peter