server端
1. 安装软件
sudo apt-get install nfs-kernel-server
2. 配置
sudo vim /etc/exports
add the following:
/tftpboot/ltib/ 192.168.1.102 (rw,no_root_squash,async)
3. 重新进行同步共享
sudo exportfs -rv
4. 重启
sudo /etc/init.d/nfs-kernel-server restart
注:ip为client ip
client端
1. 安装软件
sudo apt-get install nfs-common
2. 映射服务端的目录
sudo mount -t nfs 192.168.1.101:/tftpboot/ltib /tftpboot/ltib
注:ip为server ip
阅读(749) | 评论(0) | 转发(0) |