您的当前位置:首页正文

mount nfs使用方法

2024-11-30 来源:个人技术集锦

一、linux挂载其他服务器硬盘
NFS服务器安装, 两台机器都需要安装。

$ apt install nfs-kernel-server
$ vim /etc/exports
/home/share *(rw,sync,no_subtree_check,no_root_squash)
设置共享目录为 /home/share,权限为可读,数据同步

————————————————
挂载:

sudo mount -t nfs 192.168.xxx.xxx:/home/test /mnt/nfs

二、挂载设备
telnet连接上设备之后
mount -t nfs -o nolock 192.168.1.161:/home/zl/hisi/Hi3516CV500_SDK_V2.0.1.0_biao /mnt
提示:mount: mounting 192.168.1.161:/home/zl/hisi/Hi3516CV500_SDK_V2.0.1.0_biao on /mnt failed: Connection refused

排查发现本机(192.168.1.161)上没有安装nfs。
安装nfs:

sudo apt-get install portmap nfs-kernel-server

修改/etc/expoet:

/home/zl *(rw)

所有用户都可读可写。

 /home/share 192.168.102.15(rw,sync) *(ro)

配置说明: 对192.168.102.15赋予读写权限,其他机器仅有只读权限。

重启nfs:
/etc/init.d/nfs-kernel-server restart

还可以搭建tftp服务:
参考:http://www.360doc.com/content/13/0603/16/2200926_290180612.shtml

显示全文