From 761855395652e0595c189ca71546534bdc46cd16 Mon Sep 17 00:00:00 2001 From: Owen Voke Date: Fri, 11 Oct 2019 11:39:31 +0100 Subject: [PATCH] showmount: add page --- pages/windows/showmount.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pages/windows/showmount.md diff --git a/pages/windows/showmount.md b/pages/windows/showmount.md new file mode 100644 index 0000000000..8aed839707 --- /dev/null +++ b/pages/windows/showmount.md @@ -0,0 +1,20 @@ +# showmount + +> Display information about NFS filesystems on Windows Server. +> More information: . + +- 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}}`