[FAILED] Failed to start File System Check on /dev/vg_root_0/lv_root0[DEPEND] Dependency failed for /sysroot.[DEPEND] Dependency failed for Initrd Root File System.[DEPEND] Dependency failed for Reload Configuration from the Real Root.
[FAILED] Failed to start File System 0-a2d7-4c0a-###-8c1d##83acf[DEPEND] Dependency failed for /var/log/vmware.[DEPEND] Dependency failed for Local File Systems.You are in emergency mode. After logging in, type "journalctl -xb" to view system logs, "systemctl reboot" to reboot, "systemctl default" or "exit"During emergency mode, a 'Dependency failed' error may be displayed for a specific mount point, such as the /storage/log directory:
fsck command automatically (preferred) or manually.linuxOption 1:
At the end of the line, add fsck.repair=yes then press F10 to continue booting the appliance. This will force the filesystem to check and auto-resolve disk issues. The appliance may silently reboot several times to fix issues as needed.
Option 2:
At the end of the line, add systemd.unit=emergency.target then press F10 to continue booting the appliance.
1. Find the affected filesystem:
systemctl status systemd-fsck-root2. Run the fsck command against the mount point that has the issue:
fsck -y /dev/<mount>
Note:The -y switch will fix the nodes automatically. Replace <mount> with the mount point experiencing the issue:
fsck -y /dev/mapper/vg_root_0-lv_root_0
Alternatively, manually run a filesystem check and repair using the command below (the partition is just an example)
e2fsck -y /dev/vg_root_0/lv_root_0reboot
3. Power off the virtual appliance:
shutdown -h now
4. Power on the virtual appliance.