scenarios to mount NFS share at boot on Ubuntu 22.04 despite fstab configuration
Can someone help me understand I can't seem to get I've looked through the documentation and I'm still confused about I'm having trouble getting my NFS share to mount automatically on boot with Ubuntu 22.04... I have an NFS server set up and can manually mount the share without any issues. However, when I try to configure it in `/etc/fstab`, the share does not mount at boot, and I see the following behavior during the boot sequence: ``` mount.nfs: Connection timed out ``` Here’s what I have in my `/etc/fstab`: ``` 192.168.1.100:/exported/path /mnt/nfs_share nfs defaults,noauto,x-systemd.automount 0 0 ``` I’ve tried adjusting the options; I removed `noauto` and `x-systemd.automount` but that didn’t change anything. I also ensured that the NFS server is up and running at boot. When I run `sudo mount -a` after the system has booted, it works fine. I’ve checked my network configuration, and there’s no firewall blocking the NFS traffic. Is there something specific I need to do for the share to mount automatically at boot? Any help or insight into this scenario would be greatly appreciated. For context: I'm using Bash on Windows.