How to Setup NFS Server on CentOS 8

To transfer any files over the network, Setup NFS Server which allows to export the local file system and make it possible to access over the network from one or more clients.

Mounting Samba shares persistently during reboot

To mount a samba share during each reboot we need to interact manually. This can be automated by putting the samba share entry in fstab which will automatically mount those shares by reading credentials files. Install with Samba client pacakge # sudo apt-get install smbfs fstab entry syntax //server/share /pathto/mountpoint cifs credentials=/home/username/.smbcredentials,uid=shareuser,gid=sharegroup 0 0 Edit ... Read More