5

My computer froze. I turned it off and it re-booted with this error:

/dev/sda2 contains a file system with errors, check forced. Inodes that were part of a corrupt orphan linked list found.

/dev/sda2: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY. Fsck exited with status code 4.


Please explain it to me what I need to do simply, as I am really new to Ubuntu.

David Foerster
  • 36,264
  • 56
  • 94
  • 147

1 Answers1

9

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

Soren A
  • 6,799