- Create the NFS Share directory. You can change the name “/nfs” to wherever and whatever you want. Just be sure to remember the path and name
mkdir /nfs
- Add the NFS Share to the /etc/exports file. Change the ip address to your NFS Servers ip address.
echo "/nfs 192.168.200.250/24(rw,sync,no_subtree_check)" >> /etc/exports
- Next we chmod /etc/rc.d/rc.nfsd and rc.rpc so that they can be executed to start the service
chmod 755 /etc/rc.d/rc.nfsd chmod 755 /etc/rc.d/rc.rpc
- Start rpc and nfsd
/etc/rc.d/rc.nfsd start /etc/rc.d/rc.rpc start
- Export the Share
exports -a
- Connect a Client and have fun
How to Create a NFS Share Server on Slackware
Reply