2

I've been recently experiencing following error during every time I boot into ubuntu:

Errors were found while checking the disk drive for /.

However everything seems to work file once I choose to ignore the message, by pressing It . Note that it does not say "Serious errors..." and doesn't report an error , such as "/tmp could not be mounted" as described in posts such as

Ubuntu 14.04 not booting after error message. /tmp could not be mounted

Or this

I've been using 14.04 since May/2014 alongside Windows 7 without any problem till recently this started. gnome-disk-utility Smart Data & Self test doesn't show any error. I'm worried about health of my Hard Disc as it holds some important chunk of data. It would be great if someone could help me out on this,
Thanks in advance...

PintuUbuntu
  • 23
  • 1
  • 1
  • 6
  • You would expect that message, "Errors were found while checking the disk drive for ..." should be accompanied by the actual error messages. Did they come before this message? Or can they be found in a log? – thomasrutter Jul 04 '14 at 13:12
  • @neon_overload: No message before "Errors were found ..." is flashed. I tried to check logs at boot.log and dmesg but I'm not sure how to look for errors in these logs, it would be helpful if you could tell me how to. – PintuUbuntu Jul 04 '14 at 15:23
  • 1
    Boot a live usb, make sure all your partitions are unmounted, and run fsck -y /dev/sda, update your question with any error messages – Panther Jul 04 '14 at 19:44
  • @bodhi.zazen : Thank you very much. Ran fsck by booting live usb, error were detected and fixed as well. The error message wasn't displayed in the boot that followed !! Thanks again !!! :) – PintuUbuntu Jul 05 '14 at 03:25

1 Answers1

2

Boot a live usb, make sure all your partitions are unmounted, and run:

sudo fsck -y /dev/sda

change "sda" to your hard drive.

This command will try to fix the problem(s). if it does not work, update your question with any error messages

Panther
  • 102,067