After Upgrading to Goldeye V25.10.0 Broke NFS share

Problem with NFS service, it would refuse to start saying failure of a dependency.

after diging through the journalctl it pointed to the rpc-statd.service not starting

saying somethings like Job for rpc-statd.service failed because the control process exited with error code.

Turns out the system decided to erase 2 directory that are essential to the start of this service

I checked it with

sudo journalctl -xeu rpc-statd.service

recreated the 2 missing directory

sudo mkdir /var/db/system/nfs

sudo mkdir /var/db/system/nfs/sm

restarted the service.

sudo systemctl start rpc-statd.service

confirmed the it was working

sudo systemctl status rpc-statd.service

after that i was able to start the NFS service in the gui.

hope this helps if you get the same problem.

Take care!