π ~1 min read
Table of contents
Symptom & Impact
System halts in emergency target after boot and requires manual intervention for local mounts.
Environment & Reproduction
Usually triggered by invalid UUIDs, wrong fs type, or unavailable network mounts in fstab.
cat /etc/fstab
lsblk -f
blkid
systemctl --failed
Root Cause Analysis
systemd-fstab-generator creates failing mount units from invalid entries, causing boot dependency failure.
Quick Triage
From emergency shell, remount root and inspect mount unit failures.
mount -o remount,rw /
systemctl list-units --failed
journalctl -xb -p err --no-pager
Step-by-Step Diagnosis
Validate each fstab line and test non-critical mounts manually before rebooting.
findmnt --verify --verbose
mount -av
ls -l /dev/disk/by-uuid
cat /etc/fstab

Solution – Primary Fix
Correct or comment invalid entries, add nofail where appropriate, then regenerate init state.
Still having issues? Our Server Management team can diagnose and resolve this for you. Get in touch for a free consultation.
sudoedit /etc/fstab
sudo mount -av
sudo systemctl daemon-reload
sudo update-initramfs -u
sudo reboot

Solution – Alternative Approaches
Use systemd timeout controls for unreliable network volumes.
sudo sed -i 's/defaults/defaults,nofail,x-systemd.device-timeout=10s/' /etc/fstab
sudo mount -av
Verification & Acceptance Criteria
Fix is accepted when host boots normally and all required filesystems mount successfully.
systemctl is-system-running
findmnt -a
systemctl --failed
Rollback Plan
Restore previous fstab from backup if corrected entries still break boot.
sudo cp -a /etc/fstab /etc/fstab.bad
sudo cp -a /etc/fstab.bak /etc/fstab
sudo reboot
Prevention & Hardening
Validate fstab changes in staging and keep console access for recovery windows.
sudo cp -a /etc/fstab /etc/fstab.bak
findmnt --verify --verbose
mount -av
Related Errors & Cross-Refs
Related errors include dependency failed for local filesystems and failed to mount with bad option or bad superblock.
Related tutorial: View the step-by-step tutorial for Ubuntu 26.04 LTS.
View all Ubuntu 26.04 LTS tutorials on the Tutorials Hub β
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
fstab, mount, and systemd.mount man pages plus Ubuntu recovery mode documentation.
Need Expert Help?
If you cannot resolve this yourself, our team offers hands-on Server Management, Managed IT Services, and flexible Support Plans. Contact us today β we respond within one business day.