In Ubuntu 12.04 I was used to run the 'Disk Utility' and choose 'Check Filesystem'; its subtitle showed also 'and repair'. In Ubuntu 16.04 I have only found the 'Disks' utility that looks similarly but has no 'Check Filesystem' option, even for the superuser.
To check the file system on your Ubuntu partition...
sudo fsck -f /
fsck
command if there were errorsreboot
If for some reason you can't do the above...
gparted
and determine which /dev/sdaX is your Ubuntu EXT4 partitiongparted
terminal
windowsudo fsck -f /dev/sdaX
# replacing X with the number you found earlierreboot
Just some comments:
Great description here: How to Use ‘fsck’ to Repair File System Errors in Linux