7

Hi every day when I start my ubuntu 18.04, then it's not starting and gives a below error.

(initramfs) exit
/dev/mapper/ubuntu--vg-root contains a file system with errors, check forced.
Inodes that were part of a corrupted orphan linked list found.

/dev/mapper/ubuntu-vg-root: UNEXPECTED INCONSISTENCY; Run fsck MANUALLY.
    (i.e., without -a or -p options)

fsck exited with status code 4.
The root file system on /dev/mapper/ubuntu--vg-root requires manual fsck

When I run command fsck /dev/mapper/ubuntu--vg-root

it solves error but again the next day when I start up my system it shows same error again and needs to run the command again.

Subhash
  • 171
  • 1
  • 5

1 Answers1

0

Run fsck from the bustbox shell or a USB stick with the "-y" option to repair. Your root filesystem must NOT be mounted. Should be:

Code: fsck -y /dev/mapper/mint--vg--root

solve my problem, solution supported by https://www.linuxquestions.org/questions/linux-newbie-8/problems-with-root-file-system-4175663569/