You are not logged in.
Pages: 1
Ok, I guess the normal error check has to be done if the hd shows to be bad at bootup.
but theese 'has been mounted for 25 times, check forced", is it possible to make arch do those checks at shutdown instead of boot?
Because when I shutdown the computer I really don't care if it takes a while longer but when i boot it I usually want the comp up quite fast.
Last edited by firedance (2007-09-07 05:47:55)
Offline
Instead of rewriting Arch's initscripts, you might read up on 'man tune2fs', see the -c and -i switches.
1000
Offline
Instead of rewriting Arch's initscripts, you might read up on 'man tune2fs', see the -c and -i switches.
Are you saying that I should disable the checks compleatly? I don't want to disable them, I want to do them at shutdown instead of bootup.
Last edited by firedance (2007-09-07 16:50:18)
Offline
byte wrote:Instead of rewriting Arch's initscripts, you might read up on 'man tune2fs', see the -c and -i switches.
Are you saying that I should disable the checks compleatly? I don't want to disable them, I want to do them at shutdown instead of bootup.
No, he's not suggesting anything, other than checking out tune2fs. You can schedule your own checks if you like. Check the wiki for ext3 filesystem tips.
The following command will schedule a fsck every month:
tune2fs -c 0 -i 1m /dev/hdXY
Make sure you man tune2fs.
EDIT: Maybe add a check to /etc/rc.local.shutdown ?
Last edited by Misfit138 (2007-09-08 01:59:20)
Offline
Pages: 1