Find the answer to your Linux question:
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 ...
  1. #1
    Linux Newbie Tom Varghese's Avatar
    Join Date
    Apr 2008
    Posts
    101

    /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?

  2. #2
    Linux Guru reed9's Avatar
    Join Date
    Feb 2009
    Location
    Boston, MA
    Posts
    4,651
    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.

  3. #3
    oz
    oz is online now
    forum.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.

  4. #4
    Linux Newbie Tom Varghese's Avatar
    Join Date
    Apr 2008
    Posts
    101
    Quote Originally Posted by reed9 View Post
    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.
    Can I have a graphical bootsplash in my debian lenny? If yes how?

  5. #5
    Linux Guru reed9's Avatar
    Join Date
    Feb 2009
    Location
    Boston, MA
    Posts
    4,651
    There are a couple of options for a graphical bootloader in Debian.

    The hard way is Bootsplash.

    The easy way is Usplash.

  6. #6
    Linux Newbie Tom Varghese's Avatar
    Join Date
    Apr 2008
    Posts
    101
    Quote Originally Posted by reed9 View Post
    There are a couple of options for a graphical bootloader in Debian.

    The hard way is Bootsplash.

    The easy way is Usplash.
    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.

  7. #7
    Linux Guru reed9's Avatar
    Join Date
    Feb 2009
    Location
    Boston, MA
    Posts
    4,651
    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.

  8. #8
    Linux Guru Lakshmipathi's Avatar
    Join Date
    Sep 2006
    Location
    3rd rock from sun - Often seen near moon
    Posts
    1,568
    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)

    tune2fs -c 50
    this will start fsck only after 50 startups


    If you want to disable (Though
    it's strongly recommand to run fsck
    from time to time , to maintain file system
    integrity)
    tune2fs -c 0
    for more check
    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
    -------------------

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •