-1
/dev/sda7 contains a file system with errors, check forced.
 Inodes that were part of a corrupted orphan linked list found.

/dev/sda7: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY.
        (i.e., without -a or -p options)
fsck exited with status code 4
The root filesystem on /dev/sda7 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) _

please help

tima
  • 1
  • 2
  • I've tried fsck /dev/sda7 and it tell me not found – tima Oct 27 '16 at 11:28
  • try /sbin/fsck /dev/sda7 -y – laugeo Oct 27 '16 at 11:54
  • What says `blkid`? Is it still mounted (`umout /dev/sda7`)? When ´sudo fsck.XXX -v -a /dev/sda7´ where XXX depends on the format. – musbach Oct 27 '16 at 12:46
  • I've tried /sbin/fsck /dev/sda7 -y – and still not found!!! – tima Oct 27 '16 at 14:21
  • @musbach i didn't understand, would you clarify PLZ – tima Oct 27 '16 at 14:28
  • Ok, can you please show the output of `blkid` on a terminal? Or try simply `fsck /dev/sda7` – musbach Oct 27 '16 at 15:18
  • 1
    More details on full e2fsck: http://askubuntu.com/questions/642504/ubuntu-14-04-is-not-booting-normaly-after-a-manual-hard-boot/642789#642789 – oldfred Oct 27 '16 at 16:09
  • 3
    Possible duplicate of [fsck error on boot: /dev/sda6: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY](https://askubuntu.com/questions/697190/fsck-error-on-boot-dev-sda6-unexpected-inconsistency-run-fsck-manually) – karel Nov 06 '19 at 12:08

1 Answers1

0

Try this:

You would have to use the live-dvd/usb.

You would boot the live-dvd/usb with your PC.

And run fsck from a terminal:

sudo -i
umount /dev/sda7 
fsck /dev/sda7 -y
kyodake
  • 15,052
  • 3
  • 40
  • 48