Results 1 to 8 of 8
Sometimes, my computer shows a message like this at boot time
Checking root file system fsck 1.41.2 (02-Oct-2009)
/dev/hda3 has been mounted 29 times without checking......Check forced..
And after some ...
- 07-28-2009 #1
/dev/hda3 has been mouneted 29 times.......
Sometimes, my computer shows a message like this at boot time
Checking root file system fsck 1.41.2 (02-Oct-2009)
/dev/hda3 has been mounted 29 times without checking......Check forced..
And after some delay, the computer becomes normal. What may be the reason?
- 07-28-2009 #2
This is normal. If you didn't have a graphical bootsplash, but instead saw the system messages, you'd see during that pause the system running fsck on your filesytem.
There are ways to disable this, if you google around, but if you do, you'd want to manually check the filesystem integrity every once in a while.
- 07-28-2009 #3forum.guy
- Join Date
- May 2004
- Location
- arch linux
- Posts
- 18,086
As reed9 said above, you can disable it, but you can also change the frequency of the filesystem checks, should you wish.
oz
→ new members/users: read this first | new member faq
→ no private messages requesting computer support - post them on the forums!
→ please use the "report post" button to alert our forum admins to problematic posts rather than responding to them yourself.
- 07-29-2009 #4
- 07-29-2009 #5
There are a couple of options for a graphical bootloader in Debian.
The hard way is Bootsplash.
The easy way is Usplash.
- 07-29-2009 #6
I tried to install usplash in debian in the above link, but failed. The splash screen appears while exiting. But at boot time, it shows some error and a normal blackscreen booting is occuring. My /etc/usplash.conf file was:
# Usplash configuration file
# These parameters will only apply after running update-initramfs.
xres=1024
yres=768
title Debian GNU/Linux lenny
root hd0,2)
kernel /boot/vmlinuz-2.6.26-1-686 root=/dev/sda10 rw ramdisk_size=10000 init=/etc/init lang=us vga=791 splash=verbose
initrd /boot/initrd.img-2.6.26-1-686
But 2 errors showed at boot time: 1) at line 6 - something about title 2)at line 7 - something about the missing of "("
So I changed the script as shown below:
# Usplash configuration file
# These parameters will only apply after running update-initramfs.
xres=1024
yres=768
# title Debian GNU/Linux lenny
root (hd0,2)
kernel /boot/vmlinuz-2.6.26-1-686 root=/dev/sda10 rw ramdisk_size=10000 init=/etc/init lang=us vga=791 splash=verbose
initrd /boot/initrd.img-2.6.26-1-686
But now also the same error occures. I don't know what's the reason. Please help me, it's urgent.
- 07-29-2009 #7
I'm afraid I don't run Debian and I don't use usplash, so I'm not sure what the problem is with that guide.
Here is another one: How to Install usplash under Debian testing/lenny at Too Far North
You might want to start a new thread about usplash.
- 07-30-2009 #8
regarding fsck
=----------------
fsck automatically runs after
specific mount count(and time period)
to increase mount time,(ie no.of times system
rebooted)
(run following command as root)
this will start fsck only after 50 startupstune2fs -c 50
If you want to disable (Though
it's strongly recommand to run fsck
from time to time , to maintain file system
integrity)
for more checktune2fs -c 0
man tune2fs- Lakshmipathi.G
-------------------
FOSS India Award winning ext3fs Undelete tool and tutorials www.giis.co.in
First they criticize you,Then they laugh at you,Then they fight with you,Then you win. - M.K.Gandhi
-------------------


Reply With Quote

