last time a filesystem was checked?

What command can tell me the last time that a filesystem was fsck'd? A date would be nice, but I'd settle for the mount count since the last fsck.

I've looked all around for this in fsck*, lsattr, and stat, and I don't see it.


Solution 1:

tune2fs -l gives you that information for ex.

sudo tune2fs -l /dev/sda1 | grep "Last checked"

Solution 2:

You can use tune2fs to get the information

tune2fs -l /dev/devicetocheck | grep "Last Checked"

Similarly you can get the mount count

tune2fs -l /dev/devicetocheck | grep "Mount Count"

Solution 3:

Apart from tune2fs -l, dumpe2fs will also give you this information:

dumpe2fs /dev/sda1 | grep "Last Checked"
dumpe2fs /dev/sda1 | grep "Mount Count"