diff --git a/linux/findmnt.md b/linux/findmnt.md new file mode 100644 index 0000000000..45de2970e0 --- /dev/null +++ b/linux/findmnt.md @@ -0,0 +1,23 @@ +# findmnt + +> Find your filesystem + +- List all mounted filesystems + +`findmnt` + +- Search for a device + +`findmnt {{/dev/sdb1}}` + +- Search for a mountpoint + +`findmnt {{/}}` + +- Find filesystems in specific type + +`findmnt -t {{ext4}}` + +- Find filesystems with specific label + +`findmnt LABEL={{BigStorage}}`