NFS and SMB shares
Creating a NFS share is quite easy, and it’s a fast way to share files between Linux hosts, and apparently even with recent Windows machines (untested). Samba (SMB) is the native way to do it in Windows, but comes with some more overhead which reduces its file transfer speeds (untested). NFS Required packages The required packages are the following: # Arch Linux sudo pacman -S nfs-utils # Debian and derivatives (Ubuntu, etc.) sudo apt install nfs-kernel-server Share creation After choosing the folder you want to share, you’ll need to define the shared folders inside the /etc/exports file (created after the package installation). ...