Page 1 of 18 12311 ... LastLast
Results 1 to 10 of 180

Thread: TIP: Improve bootup speed by reprofiling bootup

  1. #1
    Join Date
    Oct 2004
    Location
    Cupertino, CA
    Beans
    5,092
    Distro
    Ubuntu 10.04 Lucid Lynx

    TIP: Improve bootup speed by reprofiling bootup

    Digg this story

    This tip applies to Ubuntu Dapper 6.06 or newer. It won't do anything if you try it on an earlier version. I typically don't like bootup gimmicks and other silly tweaks that really don't do much, but I seriously do believe you can benefit from this one... I've made an effort to explain how it works in addition to just doing it, so if you're impatient, start scrolling down.

    Disclaimer: This is a safe procedure that utilizes well-tested and noninvasive code already contained in Ubuntu's bootup procedures, but are not activated by default. However, I can't be responsible for any misfortune it may inflict in your computer.


    Background:
    One cause of slow bootup is excessive disk seeking -- as files are being read off the disk in arbitrary order, the disk heads have to jump all around looking for the files. If during your bootup, you hear the disk making a constant grinding noise loading files, you could possibly help your bootup speeds through this tip. On the other hand, if the hard disk does not appear to be working that hard, and your slow bootup is caused by intermittent "pauses" in bootup, then this tip may not be as handy for you, and you should investigate into other reasons why your bootup is slow (i.e. trying to get an IP on a slow network, etc).


    What does this procedure do?
    Ubuntu has a mechanism called "readahead" that attempts to minimize disk seeking. During a profiled bootup, Ubuntu will make a list of all the files read from the disk during the bootup procedure. It then sorts the files by the order in which they appear on your hard disk, and saves it into the /etc/readahead folder. On subsequent bootups, Ubuntu will first read this list of files into RAM. Since this list of files are in order, it should be faster to read them all at once rather than on an as-needed basis at bootup. In addition, this gives your hard disk something to do during the loading drivers and getting IP address phases of bootup, where usually the hard drive would be idle. As a result, bootup will be faster.

    Isn't readahead something already set up in Ubuntu? Why am I running it again?
    Well, Ubuntu ships with a default readahead list. Basically, the developers ran this procedure on their computer, then you use their list. However, this list may not reflect how files are laid out on your hard drive. Also, it may not reflect what you load during bootup, especially if you've installed any extra services. In addition, if you're running a development build of Ubuntu, this list might not be accurate at all.

    Does it actually help?

    Well, on my system, it took around 10 seconds off the bootup. I can't say what it'll do to you, but it doesn't hurt to try!

    However, if you have an insanely fast computer, it could be that readahead won't help your bootup times, as your system can handle bootup seeking without delay (and perhaps also your system doesn't wait long for the network to come up or hardware to be detected). So, your mileage may vary.

    Why isn't this done periodically by my computer, if it helps so much?

    Well, the process of refreshing the readahead list introduces overhead, and makes your system boot slower that one time. It's not really fair for the computer to arbitrarily decided that THIS bootup should be 25 seconds slower

    How do I do it?

    (1) At the bootup menu (GRUB), select your default kernel. You may need to press ESC to see this menu.

    (2) Press e for edit.

    (3) Choose the first line (it should start with "kernel"). Press e again.

    (4) Move to the end of the line, then add the word profile. Press enter.

    (5) Press b to boot.

    (6) Let the system boot to the login screen, and wait for all disk activity to stop. Remember, during this one bootup, you've told Ubuntu to keep track of all disk activity going on, in order to build that list. Don't be surprised if it's significantly slower than your ordinary bootups -- that's why it's not activated by default, remember?

    (7) Reboot your system, and enjoy the results.

    How often should I repeat this procedure?

    I recommend doing it:

    * Once after you install Ubuntu and get the system set up the way you like.
    * After doing a major upgrade, such as to the next version of Ubuntu. No need to do it for regular updates, etc.
    * After setting up prelink (if you use it), since that could cause bootup files to change locations on your hard drive
    * After restoring your entire system from backups, as that would change locations of files on your hard drive.

    -----

    BONUS HACK!

    Here's another related tweak that could help. It is a little more involved, but for me, the results shaved another 10 seconds off my bootup.

    How does this one work?
    By default, readahead is done in the background, while the rest of the system is booting up. I suspected that this could lead to more disk seekage, so I tried making readahead finish first, before allowing the rest of the bootup continue. To my delight, it took 10 seconds off my bootup.

    Why isn't this default?
    The three reasons I can think of are:

    (1) Users would falsely file bug reports or complain that "Reading Desktop Files" is taking a long time to run on bootup (~10 seconds on average), not realizing that in doing so it saves them LOADS of time through the rest of bootup.
    (2) The LiveCD would be agonizingly slow to load!
    (3) People with insufficient RAM to cache the readahead would not receive much benefit from this form of readahead, which can worsen bootup time.

    How do I do this?

    (1) Perform the above profiling procedure. It is important that the order is correct, else this form of readahead won't do a thing!
    (2) Use your favorite text editor (under sudo or root privileges) to open /etc/rcS.d/S01readahead
    (3) Find line 21, which reads:
    Code:
                if /sbin/start-stop-daemon --start --quiet --background \
    Remove the --background, so that it reads:

    Code:
                if /sbin/start-stop-daemon --start --quiet \
    (4) Save, reboot.

    It didn't help. How do I go back?
    Just reverse step 3, putting --background back in.

    Whoa! This really helped! Make it default for the next Ubuntu release!

    It actually is in Edgy and beyond. A reverse of the hack is to add --background again, which some people reports is slightly faster. This completely depends on your hardware/software setup and whether your boot is IO bound or wait/modprobe-bound.
    Last edited by jdong; November 29th, 2008 at 07:42 PM. Reason: Add obligatory digg link... hopefully doesn't bring the forums down :P
    Quote Originally Posted by tuxradar
    Linux's audio architecture is more like the layers of the Earth's crust than the network model, with lower levels occasionally erupting on to the surface, causing confusion and distress, and upper layers moving to displace the underlying technology that was originally hidden

  2. #2
    Join Date
    Oct 2004
    Beans
    110
    Distro
    Ubuntu

    Re: TIP: Improve bootup speed by reprofiling bootup

    thanks for the tip im gonna try it now
    Impossible is nothing but a word.

  3. #3
    Join Date
    Jun 2005
    Beans
    173

    Re: TIP: Improve bootup speed by reprofiling bootup

    WOW! Significant decrease in boot time. Thank you very much for this tip!

  4. #4
    Join Date
    Oct 2005
    Beans
    585
    Distro
    Lubuntu 18.04 Bionic Beaver

    Re: TIP: Improve bootup speed by reprofiling bootup

    i found this topic early this morning. just now had a chance to try it. don't know if it really made any difference or not, but i'm wondering, should the word "profile" still show up in in the boot options line as the system is starting back up after having let the login screen fully load? the machine i'm on is a P4 1.4ghz that never did take to long to load. tomorrow i'll try it on one my older intel celerons. one is a 600mhz and the other is an 800mhz. should be able to notice something on one of those old beasts!

  5. #5
    Join Date
    Nov 2005
    Location
    Where do I live
    Beans
    327

    Re: TIP: Improve bootup speed by reprofiling bootup

    Should I remove the word profile after the first boot? Or just leave it there?

  6. #6
    Join Date
    Apr 2006
    Location
    Alberta,Canada
    Beans
    1,135
    Distro
    Ubuntu Development Release

    Re: TIP: Improve bootup speed by reprofiling bootup

    Bummer no joy for me...I guess my speed was maxed already

    Adding "profile" using jdong's method shouldn't make any permanent changes to your /boot/grub/menu.lst.If it is still there for some reason you should remove it.
    What color do Smurfs turn when you choke em?
    ____________________________

  7. #7
    Join Date
    Oct 2004
    Location
    Cupertino, CA
    Beans
    5,092
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: TIP: Improve bootup speed by reprofiling bootup

    The word profile won't stick there -- it only lasts that one bootup.

    As I said, it may or may not make a big difference for everyone -- Ubuntu ships with a default readahead list that should theoretically be "correct".... I'd expect if everyone installs Ubuntu the same way onto the same filesystem (i.e. LiveCD installer, ext3), files would end up on the hard drive in a nearly identical way (I don't think ext3 uses a random number generator to pick where to store files!)

    However, if you've modified your bootup services, switched to kubuntu, installed using the Alternate CD (which uses a different method of installation), or picked a different filesystem, it could very well be that files land on your HD in a different order than what was expected.

    In addition, if your hard drive is very efficient at seeking, you'll notice less of an improvement.
    Quote Originally Posted by tuxradar
    Linux's audio architecture is more like the layers of the Earth's crust than the network model, with lower levels occasionally erupting on to the surface, causing confusion and distress, and upper layers moving to displace the underlying technology that was originally hidden

  8. #8
    Join Date
    Oct 2005
    Beans
    585
    Distro
    Lubuntu 18.04 Bionic Beaver

    Re: TIP: Improve bootup speed by reprofiling bootup

    yep, that's exactly how i've installed k/ubuntu on all 7 of my systems. just tried this trick on my 800mhz system. maybe a little difference. didn't really time it or watch it when i rebooted.

    i thought after doing this on this machie and watching/reading what was going on, that the word profile should only show up that one time.

    thanks

  9. #9
    Join Date
    Oct 2004
    Location
    Cupertino, CA
    Beans
    5,092
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: TIP: Improve bootup speed by reprofiling bootup

    Hmm, how much RAM you people have? If you've got insufficient RAM to load all the readahead files into RAM, it's not worth your time to do any readahead at all.


    Another alternative way you can try to speed bootup is disabling readahead -- open up /etc/readahead/boot with a sudo'ed text editor of your choice, and delete its contents.


    To get the contents back, just re-profile
    Quote Originally Posted by tuxradar
    Linux's audio architecture is more like the layers of the Earth's crust than the network model, with lower levels occasionally erupting on to the surface, causing confusion and distress, and upper layers moving to displace the underlying technology that was originally hidden

  10. #10
    Join Date
    Dec 2005
    Beans
    31

    Re: TIP: Improve bootup speed by reprofiling bootup

    Thanks for this! My (X)ubuntu system now boots up almost 10 seconds faster. Woot!

Page 1 of 18 12311 ... LastLast

Bookmarks

Posting Permissions

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