random notes


## fsck on reboot
to find out whether an fsck is going to happen, something like the following
can be used (http://serverfault.com/questions/28343/)

    mount -l -t ext3,ext2 \
	| cut -d' ' -f1 \
	| xargs -n1 tune2fs -l \
	| egrep -i 'state|mount|check'
