工具篇:远程挂载工具 nfs

Posted 旧年不在cd

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了工具篇:远程挂载工具 nfs相关的知识,希望对你有一定的参考价值。

一、NFS服务器端

  • 安装
sudo apt-get install nfs-kernel-server(安装nfs-kernel-server时,apt会自动安装nfs-common和portmap)
  • 编辑/etc/exports文件,末尾添加:
/home/nfs(你要挂载的目录) *(rw,sync,no_root_squash,no_subtree_check)
  • 使/etc/exports脚本的修改生效
sudo exportfs -rv
  • 给挂载目录赋予权限
chmod 0777 /home/nfs(你要挂载的目录) -R
  • 重启NFS服务
sudo /etc/init.d/rpcbind restart				//重启portmap,后面最新的版本都rpcbind
sudo /etc/init.d/nfs-kernel-server restart		 //重启nfs服务
sudo showmount -e							   //显示共享出的目录
  • 本机测试
sudo mount -t nfs localhost:/home/nfs /mnt		//localhost为本机linux的IP地址
sudo mount 127.0.0.1:/home/nfs /mnt

二、NFS客户端

  • 安装
sudo apt-get install nfs-common
  • 挂载服务器目录
sudo mount -t nfs -o nolock 服务器IP:服务器目录 本地挂载点

以上是关于工具篇:远程挂载工具 nfs的主要内容,如果未能解决你的问题,请参考以下文章

windows挂载nfs

Linux上挂载windows共享目录

[k8s]使用nfs挂载pod的应用日志文件

Linux实用工具-nfs

NFS服务优化 挂载优化 关于NFS内核优化

win7系统挂载Linux NFS