Which command below provides the easiest method for monitoring free space on mounted filesystems

We already know that many filesystems are used and supported by the Linux operating system, e.g., ext2, ext3, ext4, FAT16, FAT32, and a lot more. The file system is necessary for working in the Linux and Windows operating systems. If you want to know what type of filesystem your Linux OS supports this article is meant for you. This article will give you a step-by-step guide to know what kind of filesystem is mounted in a Linux operating system.

To start working, you must have any Linux distribution installed on your system. Login from your Linux system and open the command terminal. Make sure you have the “util-linux” package installed on your system to start checking the mounted filesystem. For this purpose, try the below “apt” command followed by the keyword “install” in a shell. Instantly, the installation will be completed, and you can now check the mounted filesystem.

$ sudo apt install util-linux

Which command below provides the easiest method for monitoring free space on mounted filesystems

There are many methods available to check the file system on your system. We will illustrate each one of them one by one.

Method 01: Using Findmnt Command

Our first and most used way in the Linux system to know the filesystem type is the “findmnt” command. The “findmnt” command helps us find all the mounted filesystems. Let’s start working on it. To see the list of mounted filesystems, type the simple “findmnt” command in the shell as below, which will list all the filesystems in a tree-type format. This snapshot contains all the necessary details about the filesystem; its type, source, and many more. It is clear from the image that our main filesystem is “ext4”.

Which command below provides the easiest method for monitoring free space on mounted filesystems

Let us display the filesystems in a simple format using the below “findmnt” command with a “-l” flag.

Which command below provides the easiest method for monitoring free space on mounted filesystems

We can list the type of our mounted filesystem using the findmnt command along with the “-t” flag followed by the name of the filesystem, e.g., “ext4”. So, execute the below-stated command in the shell. The output shows the information regarding the “ext4” filesystem.

Which command below provides the easiest method for monitoring free space on mounted filesystems

To see the “df” style list of output about the filesystem, you have to use the below command. You can see that it will show extra information regarding the filesystems and their sources.

Which command below provides the easiest method for monitoring free space on mounted filesystems

You can use the modified form of this command as follows:

Which command below provides the easiest method for monitoring free space on mounted filesystems

If you want to search for the configured filesystem in a particular device, you can do so using the below command. You can see that the output shows the “vfat” type filesystem for the specific device.

Which command below provides the easiest method for monitoring free space on mounted filesystems

If you want to see the mount point of a filesystem, try using the below “findmnt” command followed by the backslash “/” sign.

Which command below provides the easiest method for monitoring free space on mounted filesystems

If you want to know more details about the filesystem, use the man command as follows:

Which command below provides the easiest method for monitoring free space on mounted filesystems

The output is shown below.

Which command below provides the easiest method for monitoring free space on mounted filesystems

Method 02: Using Blkid Command

In most cases, the “findmnt” command will be enough in knowing the filesystem’s type, but there are some alternative commands for this purpose. One of them is the “blkid” command which we don’t need to mount. After the execution of the “blkid” command below, along with the “sudo” keyword, we will be able to display all the block devices along with the filesystem type.

Which command below provides the easiest method for monitoring free space on mounted filesystems

We can use the “blkid” command to know the filesystem for the particular device.

Which command below provides the easiest method for monitoring free space on mounted filesystems

To see extra details about the filesystem, try the below command:

$ sudo blkid –po udev /dev/sda1

Which command below provides the easiest method for monitoring free space on mounted filesystems

For further details try the man command below:

Which command below provides the easiest method for monitoring free space on mounted filesystems

The output is given below.

Which command below provides the easiest method for monitoring free space on mounted filesystems

Method 03: Using DF Command

The DF command is cast-off to know the disk space usage of the filesystem. Use it with the “-T” flag to know all the filesystem’s types.

Which command below provides the easiest method for monitoring free space on mounted filesystems

Go through the man page to know more.

Which command below provides the easiest method for monitoring free space on mounted filesystems

The detail is given in the snapshot.

Which command below provides the easiest method for monitoring free space on mounted filesystems

Method 04: Using File Command

Another method to check the mounted file system is using the “file” command in the shell. You can use it for files having no extension. Hence, execute the below command to know the filesystem for a partition. It may require your password to function.

$ sudo file –sL /dev/sda1

Which command below provides the easiest method for monitoring free space on mounted filesystems

To have extra information, try the below man command in the shell.

Which command below provides the easiest method for monitoring free space on mounted filesystems

You can see the details on the main page as shown in the appended image.

Which command below provides the easiest method for monitoring free space on mounted filesystems

Method 05: Usinf Fsck Command

The “fsck” command may be used to verify or restore the reliability of a filesystem by providing the partition as an argument. You will decide what sort of filesystem it is.

Which command below provides the easiest method for monitoring free space on mounted filesystems

For further details, have a look at the main page.

Which command below provides the easiest method for monitoring free space on mounted filesystems

And you can see the details shown below.

Which command below provides the easiest method for monitoring free space on mounted filesystems

Method 06: Using Fstab Command

Another new way to view the filesystem is using the “fstab” in the cat command. Therefore, try executing the below cat command in the shell.

Which command below provides the easiest method for monitoring free space on mounted filesystems

For extra details, try the same man command along with the keyword “fstab”.

Which command below provides the easiest method for monitoring free space on mounted filesystems

Now you will be having details about the filesystem, as shown in the image attached.

Which command below provides the easiest method for monitoring free space on mounted filesystems

Method 07: Using Lsblk Command

The “lsbkl” command will show the filesystem types and the devices.

Which command below provides the easiest method for monitoring free space on mounted filesystems

Run the below man command to see the details.

Which command below provides the easiest method for monitoring free space on mounted filesystems

And the extra information regarding the filesystem is displayed below.

Which command below provides the easiest method for monitoring free space on mounted filesystems

Method 08: Using grep Command

Last but not least, the “grep” command is used to check the filesystem.

Which command below provides the easiest method for monitoring free space on mounted filesystems

Conclusion:

We have done all the commands to check the mounted filesystem. I hope you can easily check the mounted filesystem in your Linux distribution.