/proc/filesystems: Find out what filesystems supported by kernel

by on July 4, 2007 · 5 comments· Last updated July 4, 2007

/proc/filesystems is the file used to detect filesystems supported by running kernel. You can quickly run grep or cat command to display the list of all supported file system. nodev indicates that the file system is not associated with a physical device such as /dev/sdb1. If you see ext3 or vfat, it means you will be able to mount ext3 and vfat based file systems.

Following cat command will quickly tell you what filesystems supported by currently running Linux kernel:

$ cat /proc/filesystems
Output:

nodev   sysfs
nodev   rootfs
nodev   proc
nodev   usbfs
        ext3
        vfat
....

For example, if the iso9660 fllesystem not listed, you can not mount standard CD-ROM file system. To add support simply recompile kernel with iso9660 filesystem support.



You should follow me on twitter here or grab rss feed to keep track of new changes.

Featured Articles:

{ 5 comments… read them below or add one }

1 Arla September 6, 2010 at 5:19 pm

What does “nodev” in the beginning of a line mean?

Reply

2 shandr December 8, 2011 at 2:27 pm

It’s not always true. For example you will not see nfs and nfs4 in /proc/filesystems after reboot. But still you can mount remote nfs directory if needed packages are installed in the system. After successful mounting nfs and nfs4 will appear in /proc/filesystem. Tested on Ubuntu 11.10

Reply

3 ken December 15, 2011 at 1:25 am

same for vfat.

i can still mount vfat usb drive even vfat not found in /proc/filesystems.But after mounting, it appears in /proc/filesystems too! Tested on kernel 2.4.35.4

Reply

4 Ra April 24, 2012 at 8:18 am

The “nodev” string in the first column means that filesystem does not require a block device to be mounted, it’s so called virtual filesystem.

Reply

5 laxman November 17, 2012 at 10:25 am

How to troubleshoot apache log errors??? can u please explain step by step process in linux ??/

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 4 + 7 ?
Please leave these two fields as-is:
Solve the simple math so we know that you are a human and not a bot.




Tagged as: , ,

Previous post:

Next post: