I'm trying to mount an NFS share over a LAN:
- Server: Arch Linux x64
- Client: Windows 7 Ultimate x64
The server already successfully exports NFS shares to other Linux machines, so I'm pretty sure it has no problems. I added an entry in /etc/exports for the new Windows machine and restarted the nfs-server service.
On the Windows machine, I enabled the following in "Add/Remove Programs":
- Services for NFS
- Subsystem for UNIX-based Applications
Then, following the guide here I tried to run the following command to mount the NFS share so it would show up as the Z:\ drive:
mount //192.168.1.99/data/authorized Z:
I got the following output:
cmdlet New-PSDrive at command pipeline position 1
Supply values for the following parameters:
Root:
It was waiting for me to enter something for "Root:". I'm guessing this means the NFS share root, so I entered it (/data/authorized), although it should've already been picked up from my initial command.
That's when I got this error:
New-PSDrive : Cannot find a provider with the name 'Z:'.
At line:1 char:6
+ mount <<<< //192.168.1.99/ Z:
+ CategoryInfo : ObjectNotFound: (z:String) [New-PSDrive], ProviderNotFou
+ FullyQualifiedErrorId : ProviderNotFound,Microsoft.PowerShell.Commands.NewPSDriv
How do I get the share to mount successfully?

