3DSlicer froze my computer importing a CT set, and not finding any way to fix it, I held the power button 'til it shut off.
Booting up, after selecting 'Ubuntu' from the boot menu, I am met with a black screen saying:
lvmetad is not active yet, using direct activation during sysinit /dev/mapper/ubuntu--vg-root contains a file system with errors, check forced. Inodes that were part of a corrupted orphan linked list found.
/dev/mapper/ubuntu--vg-root: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY. (i.e., without -a or -p options) fsck exited with status code 4 The root filesystem on /dev/mapper/ubuntu--vg-root 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)
Typing 'help', 'fsck' is not one of the listed built-in commands. Typing 'exit' repeats the message and brings me back to the (initramfs)
prompt. Typing 'fsck' returns fsck from util-linux 2.27.1
and returns me to the (initramfs)
prompt.
How do I fix the installation?
fsck /dev/mapper/ubuntu--vg-root
should do it. – Soren A Feb 01 '18 at 11:17(initramfs)
prompt. I will try theexit
command now -- which brought me back to the main login screen as normal. Thank you! – DBinJP Feb 01 '18 at 11:29fsck -y /dev/mapper/ubuntu--vg-root
to automatically answer Yes to fix. – Soren A Feb 01 '18 at 11:39