How to check which filesystem current kernel supports?

I would like to know if it's possible to check which filesystems my kernel supports. (like btrfs, raiserfs, exfat, ...).

Man mount shows many options, but it's not really possible to use all


Solution 1:

You can easily find out what filesystem running Linux kernel supports with following command:

 cat /proc/filesystems

enter image description here

Solution 2:

use

cat /proc/filesystems

to check the list of file systems supported by the kernel.

Solution 3:

Note that file systems like btrfs may be available but they are also experimental, so use with caution.