#This txt shows how to install different type of server types and configure them. #edit /etc/hostname to set your hostname and domain. #NFS Server - First run dnf to install the neccessary files on your system $sudo dnf install nfs-utils #Create a share folder like this example or anywhere you like. $mkdir /home/share #Then edit the /etc/exports file correctly to enable a nfs-client to mount your nfs share #Run the nfsd daemon to allow other nfs-clients file-system requests. $systemctl start nfsd $systemctl enable nfsd