Unfortunately no one can be told what fun_plug is - you have to see it for yourself.
You are not logged in.
Hi All,
I am new here, and a definite linux noob. I really appreciate the existense of this forum, it actually made help me make my decision to buy a DNS-323.
However, now i have a problem, i hope someone with more experience can help me out. I read that turning off the NAS might cause this unchecked fs warning, i checked my system log, and there it was, so i installed cleanboot and run e2fsck using fonz's fsck package.
My problem is, even after this, the warning is still there. Is there a way to remove it? Is it actually a real warning, as i ran e2fsck twice now, and the second time it found no problems?
Anyway, this is what my log shows:
/mnt/HD_a2/ffp/start# cat /var/log/messages |grep EXT Oct 10 13:50:18 dlink user.warn kernel: EXT2-fs warning: mounting unchecked fs, running e2fsck is recommended Oct 10 13:50:18 dlink user.warn kernel: EXT2-fs warning: maximal mount count reached, running e2fsck is recommended Oct 10 13:50:18 dlink user.warn kernel: EXT2-fs warning: maximal mount count reached, running e2fsck is recommended Oct 10 13:50:18 dlink user.warn kernel: EXT2-fs warning: maximal mount count reached, running e2fsck is recommended Oct 10 13:50:18 dlink user.warn kernel: EXT2-fs warning: maximal mount count reached, running e2fsck is recommended
Any help is appreciated. And i did search for the answer, but couldn't find any...
Btw, i use ffp 0.5, the fsck package from fonz and 2 separate volumes in the dns-323.
-sc
Last edited by scarcow (2008-10-10 19:34:51)
Offline
That warning is 100% normal. You can ignore it.
Use "tune2fs -l" to check the current and maximum mount count.
e.g.
root@DNS-323:~# tune2fs -l /dev/sda2 tune2fs 1.41.0 (10-Jul-2008) ... Mount count: 73 Maximum mount count: 28 Last checked: Sun Aug 24 18:22:18 2008 Check interval: 15552000 (6 months) Next check after: Fri Feb 20 18:22:18 2009 ...
Use "tune2fs -c xxx" to change the maximum mount count.
e.g.
root@DNS-323:~# tune2fs -c 100 /dev/sdb4 tune2fs 1.41.0 (10-Jul-2008) Setting maximal mount count to 100
Use "tune2fs -C xxx" to change the current mount count.
e.g.
root@DNS-323:~# tune2fs -C 0 /dev/sdb4 tune2fs 1.41.0 (10-Jul-2008) Setting current mount count to 0
Offline