Skip to content

Instantly share code, notes, and snippets.

@ederrafo
Created March 20, 2017 15:17
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ederrafo/919d4f042e859bf328f3d2996019b261 to your computer and use it in GitHub Desktop.
Save ederrafo/919d4f042e859bf328f3d2996019b261 to your computer and use it in GitHub Desktop.
fsck error on boot /dev/sda2 solved linux ubuntu
"/dev/sda2 contains a file system with errors, checked forced.
Inodes that were part of a corrupte orphan linked list found.
/dev/sda2/ UNEXPECTED INCONSISTENCY: RUN fsck MANUALLY.
(i.e. without -a or -p options)
fsck exited with status code 4
the root filesystem on /edv/sda2 requires a manual fsck
Busybox v1.22.1 (Ubuntu 1:1.22.0-15ubuntu1) built in shell (ash)
Enter 'help' for a list of built-in commands.
(initramfs)
"
Solved this
At the prompt write $ fsck -y /dev/sda to run manual check on the filesystem. The '-y' option will automatically answer yes to all question.
http://askubuntu.com/questions/890501/the-root-filesystem-requires-manual-fsck
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment