Ubuntu 16.04 でニフティクラウド NAS サーバーの NFS マウント
1641 ワード
検証に必要なので作業したメモ。
まず、必要なパッケージをインストール。
# apt-get -y install nfs-common
マウント先のディレクトリ作成。
# mkdir /nfs
マウント実行。
# mount -t nfs4 ${NAS サーバーの IP}:/ /nfs
マウントされてる。
# df -h | grep nfs
${NAS サーバーの IP}:/ 985G 72M 985G 1% /nfs
いったんアンマウント。
# umount /nfs
サーバーが再起動されてもいいように /etc/fstab
に書いておく。
# echo '${NAS サーバーの IP}:/ /nfs nfs defaults 0 0' >> /etc/fstab
/etc/fstab
の内容をもとにマウントできるか確認。
# umount /nfs
マウントできてる。
# df -h | grep nfs
${NAS サーバーの IP}:/ 985G 72M 985G 1% /nfs
参考資料
Author And Source
この問題について(Ubuntu 16.04 でニフティクラウド NAS サーバーの NFS マウント), 我々は、より多くの情報をここで見つけました https://qiita.com/tily/items/e281e171b0e32b105445著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .