Hi there!
Sorry to hear about your problem. I was unclear whether you had windows and ubuntu file systems to check or just windows ones?
Both can be checked from the terminal on the live CD - boot it up and open gparted (on the desktop) to work out what each of the partitions you want to scan are - and what file system they are, for example /dev/sda1 - ntfs, /dev/sda2 - ext4
then open a terminal by pressing ctrl+alt+t
For scanning of Linux filesystems
Code:
sudo fsck -t ext4 /dev/sdaX -set X as the number of the Linux partition in gparted.
It'll ask you to repair any errors it makes - it you want to just say yes to all add '-y' between '4' and '/'
For scanning NTFS (Windows)
Code:
sudo apt-get install ntfsprogs
sudo ntfsfix /dev/sdaX - set X as the number of the Windows (NTFS) partition in gparted
Hope it helps
Bookmarks