在Linux中配置NFS共享目录的步骤如下:
sudo apt-get install nfs-kernel-server
sudo mkdir /share
sudo chmod -R 777 /share
sudo nano /etc/exports
在文件的末尾添加以下内容:
/share IP地址/子网掩码(rw,sync,no_subtree_check)
例如,允许IP地址为192.168.0.100的主机访问共享目录:
/share 192.168.0.100/24(rw,sync,no_subtree_check)
保存并关闭文件。
启动NFS服务器。使用以下命令启动NFS服务器:
sudo systemctl start nfs-kernel-server
sudo exportfs -ra
sudo mount IP地址:/share /mnt
其中,IP地址是NFS服务器的IP地址,/share是共享的目录,/mnt是将共享目录挂载到的本地目录。
这些是配置NFS共享目录的基本步骤。具体的配置可能因操作系统版本和发行版而有所不同。请查阅相关文档以获取更多详细信息。