If you have the following Ubuntu error, I might have a fix for it.
fsck from util-linux 2.26.2
/dev/sda1 contains a file system with errors, check forced.
/dev/sda1: Inodes that were part of a corrupted orphan linked list found.
/dev/sda1: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY.
(i.e., without -a or -p options)
fsck exited with status code 4
The root filesystem on /dev/sda1 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) _
And believe me help command does nothing.
Just fire a simple command to execute fsck manually.
fsck /dev/sda1
If some other filesystem is causing the error then mention that name after fsck.
It will show some processing. If it asks any questions like Fix(y/n)? always enter y.
In the end when (initramfs) reappears enter:
reboot
Well, that's all! It worked for me. Hope it works for you.
fsck from util-linux 2.26.2
/dev/sda1 contains a file system with errors, check forced.
/dev/sda1: Inodes that were part of a corrupted orphan linked list found.
/dev/sda1: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY.
(i.e., without -a or -p options)
fsck exited with status code 4
The root filesystem on /dev/sda1 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) _
And believe me help command does nothing.
Solution:
Just fire a simple command to execute fsck manually.
fsck /dev/sda1
If some other filesystem is causing the error then mention that name after fsck.
It will show some processing. If it asks any questions like Fix(y/n)? always enter y.
In the end when (initramfs) reappears enter:
reboot
Well, that's all! It worked for me. Hope it works for you.
Comments
Post a Comment