6

When my disk space for the ubuntu installation partition was getting low, from a live cd, I used gparted to increase its volume capacity, by deleting another partition and merging it to the ubuntu partition.

Since then, I am always receiving disk checking for errors at boot screen for my partitions.

What seems to be causing this and how can I fix it?

Update

Here is my boot.log if it provides few insight

fsck from util-linux 2.19.1
fsck from util-linux 2.19.1
/dev/sda1 was not cleanly unmounted, check forced.
ubuntu: clean, 501325/1310720 files, 2958455/5242880 blocks
/dev/sda1: 241/51272 files (3.3% non-contiguous), 73541/102400 blocks
mountall: fsck /boot [358] terminated with status 1
Skipping profile in /etc/apparmor.d/disable: usr.bin.firefox
...

/dev/sda1 is a separate grub partition for my dual OS's

Starx
  • 5,263

3 Answers3

1

You're going to have to let it complete at least once. fsck is a legitimate health-check, and it's the "Right Thing" to do.

that said, if you ARE letting it complete, and it's still running every time you reboot, check the SMART results in the Disk Utility application (disk could be going bad), or adjust the frequency of disk checks with a command like:

sudo tune2fs -c 50 /dev/sda1

be sure to change the device to your actual device name, and feel free to adjust the count as well.

nathwill
  • 2,605
0

To disable file system integrity check for forever. Type following command

sudo tune2fs -c -1 /dev/sda

Where sda is your HDD.

KK Patel
  • 19,083
  • 4
    I would suggest to not stop the integrity check but to look into why it is checking it. The partition might have a problem (inode related, file corruption, etc..) – Luis Alvarado Feb 07 '13 at 17:02
0

Your drive (partition /dev/sda1) is not being cleanly unmounted. In layman's terms: Your computer isn't shutting down that partition properly, and as a result your drive may have suffered damage - that's why this happens.

whiskers75
  • 1,122