check_latest_version && sudo apt update && sudo apt upgrade -y
Verify server is accessible:
ping nfs_server
showmount -e nfs_server
rpcinfo -p nfs_server
Restart NFS client services:
sudo systemctl restart nfs-client
sudo systemctl restart rpcbind
sudo mount -a
Try different mount options:
sudo umount /nfs/mount
sudo mount -t nfs -o soft,intr server:/path /mount
sudo mount -t nfs -o vers=3 server:/path /mount
The NFS client cannot communicate with the NFS server, causing mounted directories to become unresponsive.
cat /proc/mounts | grep nfs
rpcinfo -p
netstat -an | grep :2049
journalctl -u nfs-client