Windows 2022
Sponsored Link

NFS サーバー : NFS クライアントからの接続2023/02/02

 
NFS クライアントから NFS 共有への接続方法です。
[1]
NFS サーバー側で接続を許可したクライアントホスト上で PowerShell を起動して接続します。
リンク先の通り、ホストベースで Read/Write アクセスを許可した簡易 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\Serverworld> 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\Serverworld> Get-PSDrive Z 

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

# 読み書き可能か確認
PS C:\Users\Serverworld> echo "write test" > Z:\testfile.txt 
PS C:\Users\Serverworld> Get-Content Z:\testfile.txt 
write test

# アンマウントする場合は以下
PS C:\Users\Serverworld> umount.exe Z:\ 

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

# [New-PSDrive] で Z ドライブにマウント
# [-PSProvider] の引数はファイルシステムの場合は [FileSystem]
# その他 [-PSProvider Registry] でレジストリキーをマウント
PS C:\Users\Serverworld> 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\Serverworld> Remove-PSDrive Z 
関連コンテンツ