From 3e6b16bb2d2968adde14a5bda4f78c026cea9913 Mon Sep 17 00:00:00 2001 From: Owen Voke Date: Sat, 9 Nov 2019 13:27:41 +0000 Subject: [PATCH] mount: add page (#3530) --- pages/windows/mount.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pages/windows/mount.md diff --git a/pages/windows/mount.md b/pages/windows/mount.md new file mode 100644 index 0000000000..22cd1c1942 --- /dev/null +++ b/pages/windows/mount.md @@ -0,0 +1,32 @@ +# mount + +> Mount Network File System (NFS) network shares. +> More information: . + +- Mount a share to the "Z" drive letter: + +`mount \\{{computer_name}}\{{share_name}} {{Z:}}` + +- Mount a share to the next available drive letter: + +`mount \\{{computer_name}}\{{share_name}} *` + +- Mount a share with a read timeout in seconds (defaults to 0.8, can be 0.9 or 1 to 60): + +`mount -o timeout={{seconds}} \\{{computer_name}}\{{share_name}} {{Z:}}` + +- Mount a share and retry up to 10 times if it fails: + +`mount -o retry={{retries}} \\{{computer_name}}\{{share_name}} {{Z:}}` + +- Mount a share with forced case sensitivity: + +`mount -o casesensitive \\{{computer_name}}\{{share_name}} {{Z:}}` + +- Mount a share as an anonymous user: + +`mount -o anon \\{{computer_name}}\{{share_name}} {{Z:}}` + +- Mount a share using a specific mount type: + +`mount -o mtype={{soft|hard}} \\{{computer_name}}\{{share_name}} {{Z:}}`