03-16-2019, 10:11 PM
(03-16-2019, 08:06 AM)Mrfixit2001 Wrote: Hmm it appears to already be included in the kernel, but not as a module:
CONFIG_NETWORK_FILESYSTEMS=y
CONFIG_NFS_FS=y
CONFIG_NFS_V2=y
CONFIG_NFS_V3=y
CONFIG_NFS_V3_ACL=y
CONFIG_NFS_V4=y
CONFIG_NFS_SWAP=y
Full config output here: https://pastebin.com/FKzRTrWX
A few additions since that post, including cifs, aufs, and some additional networking netfilter drivers.
Also - the kernel source is on my GitHub if you want to compile from source.
After a lot of research why NFS server is not working, I think I may have found the reason...
NFS is meant for client and NFSD is meant for server, and as per your kernel config: # CONFIG_NFSD is not set
Checked the kernel config via command: zcat /proc/config.gz | grep NFSD
Now as a noob I am still trying to understand how to recompile a kernel and to change that config, but if you could look into that on your free time I would very much appreciate it.
Keep up the great work, and thank you!