Installation#

$ dnf install nfs-utils nfs-utils-lib
$ systemctl start nfs.service
$ systemctl start rpcbind.service

Server Configuration#

Edit /etc/exports:

<shared dir> <client IP>(rw,sync,no_root_squash)

Client Configuration#

$ showmount -e <server IP>
$ mount -t nfs <server IP>:<shared dir> <local dir>