码迷,mamicode.com
首页 > 系统相关 > 详细

ubuntu18.04搭建nfs

时间:2019-01-29 20:30:41      阅读:329      评论:0      收藏:0      [点我收藏+]

标签:exports   dir   客户   btree   bsp   port   nfs   apt   com   

1.服务端安装

#apt-get update -y 
#apt-get install -y nfs-kernel-server
#apt-get enable nfs-kernel-server

2.选定目录

#mkdir -p /data
#chown nobody:nogroup /data
#chmod 777 /data
#echo "/data 100.100.22.1/24(rw,sync,no_subtree_check)" >> /etc/exports
#exportfs -r
#systemctl restart nfs-kernel-server

3.服务端测试

#showmount -e 127.0.0.1

4.客户端安装

#apt-get update -y
#apt-get install -y nfs-common

5.选定目录

#mkdir -p /data

6.添加挂载

#echo "100.100.22.20:/data /data nfs rw 0 0" >> /etc/fstab
#mount -a

7.联调测试

#touch 1.txt

 

ubuntu18.04搭建nfs

标签:exports   dir   客户   btree   bsp   port   nfs   apt   com   

原文地址:https://www.cnblogs.com/mangoVic/p/10335191.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!