Findmnt - Find all mounted filesystems on Linux
Last Updated :
23 Jul, 2025
Findmnt is a command-line tool in Linux which lists the all-mounted file system on the system. findmnt searches for the mounted file in t/etc/fstab, /etc/mtab, or /proc/self/mountinf locations. By default, it shows all mounted file systems on the system. This command is preinstalled on the system. This command comes with package util-Linux. Now let see how to use the findmnt tool.
Listing the file system
To see all file systems mounted on the system, we can simply use the findmnt command:
findmnt
Then the output will be in the tree-like structure.

The columns in the output show the following information:
- TARGET: It shows target mount point
- SOURCE: It shows the source device
- FSTYPE: It shows the type of file system.
- OPTIONS: It will show the file system mount options.
Files system in a list format
By default, findmnt shows the output in the form of tree like structure. To get output in the form list, use -l option with the findmnt command:
findmnt -l

Listing the system in df format:
To get the output in the form of df command like output format, use findmnt with option -D or --df. This option will show the output in the form of df format.
findmnt -D

fstab output list:
To show the Filesystem information, fetched from the directory /etc/fstab file and /etc/fstab.d use findmnt command with -s or –fstab options.
findmnt -s

Filter out file system:
To get the output of specific file systems types, we can use -t or --types option with findmnt command. To filter multiple file systems, mention file system type separated by comma.
findmnt -t ext4

Raw Output:
To get the output in the format in a random fashion use the -r or --raw option with findmnt command.
find -r

Search with the source device
To get the output of the specific source device, use the -S with findmnt command.
findmnt -S /dev/sda2

Search by mount point
To get the output in of specific TARGET or mount point, use the -T or --target option with findmnt command
findmnt -T /
To know more about the findmnt command, read the man page of the findmnt.
man findmnt
Similar Reads
Linux - Installing locate Command to Find Files In this article, we will see how to install locate command to find files in Linux. locate is a command-line interface tool used for finding files by name in Linux systems. This works more efficiently than other commands. It uses one or more databases by updatedb. To check whether locate utility is a
2 min read
How to Find a File in Linux | Find Command The find command in Linux is used to search for files and directories based on name, type, size, date, or other conditions. It scans the specified directory and its sub directories to locate files matching the given criteria.find command uses are:Search based on modification time (e.g., files edited
9 min read
How to Find Out File Types in Linux In Linux, everything is considered as a file. In UNIX, seven standard file types are regular, directory, symbolic link, FIFO special, block special, character special, and socket. In Linux/UNIX, we have to deal with different file types to manage them efficiently.Categories of Files in Linux/UNIXIn
7 min read
How to Find Recently Modified Files in Linux? Here we are going to see how to find recent or todayâs modified files in Linux. Locating files with a particular name is one of the problems Linux user's faces, it would be easier when you actually know the filename. let's assume that you have created a file in your home folder and you have forgotte
2 min read
How to Find Files Modified in Last N Number of Days in Linux? Sometimes, we want to find the files which we created or modified in the last N number of days. Sorting the files on the basis of date helps in this case, but that's the traditional way of doing the task and is not efficient. This article is all about searching such files using the find command. Met
3 min read
How to Mount File System in Linux | mount Command The mount command connects storage devices or file systems (like EXT4, NTFS, or FAT32) to directories known as mount points. Once mounted, everything inside that mount point reflects the contents of the attached storage.SyntaxBelow is the syntax for the mount command:sudo mount [options] <device
6 min read