Windows 2019
Sponsored Link

NFSサーバー : NFSクライアントからの接続2019/04/03

 
NFSクライアントから NFS 共有への接続方法です。
[1]
NFS サーバー側で接続を許可したクライアントホスト上で PowerShell を起動して接続します。
NFS 共有は、NFS クライアントインストールによりインストールされた [C:\Windows\system32\mount.exe] コマンドや、PowerShell の Cmdlet [New-PSDrive] でマウント可能です。
PowerShell 上で操作する場合は、既定で [mount] コマンドは [New-PSDrive] への Alias に設定されているため、[mount] 単体で呼び出すと [New-PSDrive] が実行されますが、それぞれに書式が異なるため、 [mount.exe] を使用する場合は拡張子まで明示的に指定する必要があります。
Windows PowerShell
Copyright (C) Microsoft Corporation. All rights reserved.

# [mount.exe] で Z ドライブにマウント
# 書式は Linux 等の [mount] コマンドと同じ
PS C:\Users\Administrator> mount.exe 10.0.0.101:/nfsshare Z:\ 
Z: is now successfully connected to 10.0.0.101:/nfsshare

The command completed successfully.

PS C:\Users\Administrator> Get-PSDrive Z 

Name           Used (GB)     Free (GB) Provider      Root                                               CurrentLocation
----           ---------     --------- --------      ----                                               ---------------
Z                  14.56         64.91 FileSystem    \\10.0.0.101\nfsshare

# アンマウント
PS C:\Users\Administrator> umount.exe Z:\ 

Disconnecting           Z:      \\10.0.0.101\nfsshare
The command completed successfully.

# [New-PSDrive] で Z ドライブにマウント
# [-PSProvider] の引数はファイルシステムの場合は [FileSystem]
# その他 [-PSProvider Registry] でレジストリキーをマウント
PS C:\Users\Administrator> New-PSDrive -Name Z -PSProvider FileSystem -Root "\\10.0.0.101\nfsshare" 

Name           Used (GB)     Free (GB) Provider      Root                                               CurrentLocation
----           ---------     --------- --------      ----                                               ---------------
Z                                      FileSystem    \\10.0.0.101\nfsshare

# アンマウント
PS C:\Users\Administrator> Remove-PSDrive Z 
関連コンテンツ