I needed to restore my Ubuntu 20.04 server after trying out 22.04 for a bit. (Certain functions I require are not yet ready for 22.04.) The restore (which was a simple dd operation from a dd backup) went great, and everything is working except that my primary storage area (at /dev/sda1 and in good health) won't mount. It is listed in fstab as:
UUID=6961b9dc-2983-4b3d-ab5a-12d52099d960 /svr ext4 defaults 0 1
When I mount it, there is no failure at the command line, but ls -l /svr still shows no files. So I investigated /var/log/syslog, and found this:
Jan 16 11:44:58 r2d2 systemd[1]: svr.mount: Unit is bound to inactive unit dev-disk-by\x2duuid-6961b9dc\x2d2983\x2d4b3d\x2dab5a\x2d12d52099d960.device. Stopping, too.
Jan 16 11:44:58 r2d2 kernel: [16290.137663] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
Jan 16 11:44:58 r2d2 systemd[1]: Unmounting /svr...
Jan 16 11:44:58 r2d2 systemd[1354]: svr.mount: Succeeded.
Jan 16 11:44:58 r2d2 systemd[4520]: svr.mount: Succeeded.
Jan 16 11:44:58 r2d2 systemd[1]: svr.mount: Succeeded.
Jan 16 11:44:58 r2d2 systemd[1]: Unmounted /svr.
Attempts to mount explicitly: (sudo mount /dev/sda1 /svr) respond exactly the same.
Research pointed me to relevant question systemd keeps unmounting, which seems to dance around this same topic but apparently there's some difference since the solutions there (systemd daemon-reload or reboot) do not resolve this issue.
What might I try in order to resolve this? Again, this was all working fine - even under Ubuntu 22.04 - and has only been an issue since the restore.
Thanks!