-1

My Ubuntu computer says /dev/sda5 contains a file system with errors, check forced. /dev/sda5: Inode 393249 seems to contain garbage.

/dev/sda5: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY. (i.e., without -a or -p options) fsck exited with status code 4 the root filesystem on /dev/sda5 requires a manual fsck

BusyBox v1.30.1 (Ubuntu 1:1.30.1-4ubuntu6.4) built in shell (ash) Enter 'help' for a list of built-in commands.

(initramfs)

How do I fix this?

Nmath
  • 12,333

1 Answers1

0

At the prompt enter fsck -y /dev/sda5 to run manual check on the filesystem. The -y option will automatically answer yes to all question.

Oliver
  • 101