/dev/sdal contains a file system with errors, check forced.
/dev/sda1:
Inode 12849237 extent tree (at level 2) could be narrower. IGNORED. /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.27.2 (Ubuntu 1:1.27.2-2ubuntu3.3) built-in shell (ash)
Enter 'help' for a list of built-in commands.
(initramfs) _
Asked
Active
Viewed 172 times
0

Artur Meinild
- 26,018
1 Answers
0
This happened because your system crashed, possibly because you forced it to shut down by holding a power button or something. A manual fsck just tells you to type fsck /dev/sda1
, press enter, keep saying "yes" to everything, and then restart when you're finished.

Aaron
- 26
- 2
fsck -f /dev/sda1
orsudo fsck -f /dev/sda1
, thenreboot
. – heynnema Apr 16 '22 at 14:56