NFSサーバー : NFSクライアントからの接続2017/02/14 |
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) 2016 Microsoft Corporation. All rights reserved. # [mount.exe] で Z ドライブにマウント # 書式は Linux 等の [mount] コマンドと同じ PS C:\Users\Administrator> mount.exe 10.0.0.101:/NFSshare01 Z:\ Z: is now successfully connected to 10.0.0.101:/NFSshare01 The command completed successfully. PS C:\Users\Administrator> Get-PSDrive Z Name Used (GB) Free (GB) Provider Root CurrentLocation ---- --------- --------- -------- ---- --------------- Z 23.24 56.27 FileSystem \\10.0.0.101\NFSshare01 # アンマウント PS C:\Users\Administrator> umount.exe Z:\ Disconnecting Z: \\10.0.0.101\NFSshare01 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\NFSshare01" Name Used (GB) Free (GB) Provider Root CurrentLocation ---- --------- --------- -------- ---- --------------- Z FileSystem \\10.0.0.101\NFSshare01 # アンマウント PS C:\Users\Administrator> Remove-PSDrive Z |
Sponsored Link |