I found a good tutorial that can help you: http://www.ehow.com/how_6864409_fix-bad-sectors-ubuntu.html
Open a terminal> enter mount command and do the following:
Select the file system to restore. For example, you can select a file system named "/ home" if the output of the "mount" command includes this line: / dev / mapper / vg 0-home on / home type ext3 (rw)
Enter the umount command to unmount the file system. To unmount the file system "/ home", for example, run the command " sudo umount /home ".
Enter the fsck command to restore the file system. The fsck command means file system check; it scans the disk for bad sectors and names those that do not work. To run fsck on the / home file system, run the command "sudo fsck / dev / mapper / vg0-home". Replace "/ dev / mapper / vg0-home" with the output from your "mount" command, if necessary.
Enter the mount command to remount the restored file system. If you have restored the "/ home" file system, use the " sudo mount /home " command.
user3237717
source share