首页 > 系统 > Ubuntu > 正文

Ubuntu配置NFS server

2024-06-28 16:01:23
字体:
来源:转载
供稿:网友

1:安装nfs

sudo apt-get install nfs-kernel-server

2:定义nfs允许挂载的目录及权限

打开/etc/exports文件,在末尾加入:

/ *(rw,sync,no_root_squash)

3:重启服务

(1):sudo /etc/init.d/portmap restart

(2):sudo /etc/init.d/nfs-kernel-serverrestart

(3):showmount -e

4:本机测试

sudo mount -t nfs localhost:/home/mnt

5:在嵌入式设备上挂载时加-o nolock

mount -n –o nolock,rsize=1024,wsize=1024,timeo=15 192.168.0.230:/ /tmp

 


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表