If you need to make sure fsck runs on the next reboot, here's a really simple way to do it:
[sourcecode lang="bash"]
$ sudo touch /forcefsck
[/sourcecode]
Alternatively (and depending on your version of Linux) you may also be able to pass an option to the shutdown command:
[sourcecode lang="bash"]
$ shutdown -rF now
[/sourcecode]