mariusv.com

Watch as I awkwardly stumble through life

Check if your server is about to run fsck soon

Posted by Marius Voila on February 20, 2012 in London, U.K . — 0 comments This post contains 218 words

Couple of weeks ago I updated my debian server. And when I restarted it, it didn’t came up. To make things worse, the EC2 Console interface didn’t helped too much so I couldn’t see what’s really going on. I presumed that the system isn’t responding because of some kernel panic. After a while, I gave up for that night in hope the in the morning the EC2 Console would be sorted out. To my surprise, the EC2 Console was still out of work, but the server was up again. Apparently, the system wasn’t stuck on kernel panic, but on fsck’ing the hdd’s. So in order to avoid such problems in the future I looked for a way to tell when the system is going to run fsck after the next reboot .

root@thoraxe:~# tune2fs -l /dev/xvda2

In the output you will find the following lines:

Mount count:              11
Maximum mount count:      20
Last checked:             Sat Jan 14 23:27:11 2012
Check interval:           15552000 (6 months)

Maximum mount count is the number of mounts after which the filesystem will be checked by fsck. Check interval is the maximal time between two filesystem checks. The command also lets you see the actual mount count since the last check and when it took place.