1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 12:02:08 +02:00
tldr/pages/linux/findmnt.md

24 lines
357 B
Markdown

# findmnt
> Find your filesystem.
> More information: <https://manned.org/findmnt>.
- 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}}`