1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/windows/showmount.md
2022-10-04 23:06:23 +08:00

20 lines
459 B
Markdown

# showmount
> Display information about NFS filesystems on Windows Server.
> More information: <https://learn.microsoft.com/windows-server/administration/windows-commands/showmount>.
- Display all exported filesystems:
`showmount -e`
- Display all NFS clients and their mounted directories:
`showmount -a`
- Display all NFS mounted directories:
`showmount -d`
- Display all exported filesystems for a remote server:
`showmount -e {{server_address}}`