The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    Ubuntu slow boot

    Discussion in 'Linux Compatibility and Software' started by anchor, Jun 14, 2007.

  1. anchor

    anchor Notebook Enthusiast

    Reputations:
    0
    Messages:
    10
    Likes Received:
    0
    Trophy Points:
    5
    Hey, guys. I kinda have question on ubuntu again. I just realized ubuntu boots slightly slower than vista on my laptop. I mean the time it takes before get into the log in screen. I found people saying it is about configuring network interface problem and I took their advices to edit /etc/network/interfaces file. However, it still boot somehow slower than vista (ubuntu 35s, vista 32s), according to my watch ^_^. Any advice I can make ubuntu to boot faster?

    Thanks
     
  2. TedJ

    TedJ Asus fan in a can!

    Reputations:
    407
    Messages:
    1,078
    Likes Received:
    0
    Trophy Points:
    55
    There's not much you can do about it for the moment, although Ubuntu is working on a revised boot routine that should be much faster.

    Also remember that Windows "cheats" when it comes to system startup; it's still busily loading in the background once you've reached the desktop. Once you hit the desktop in linux, the system's all yours.
     
  3. anchor

    anchor Notebook Enthusiast

    Reputations:
    0
    Messages:
    10
    Likes Received:
    0
    Trophy Points:
    5
    Thanks TedJ. I'm just curious coz I found someone telling that his machine boots withing 15 seconds LoL.
     
  4. Lysander

    Lysander AFK, raid time.

    Reputations:
    1,553
    Messages:
    2,722
    Likes Received:
    1
    Trophy Points:
    55
    Ubuntu isn't exactly the leanest of systems. They cater to the general population, so they include lot of things you may not need.

    I got an 18 second boot time using Arch Linux. However, it is more difficult to set up and get things like power management running smoothly.
     
  5. Paul

    Paul Mom! Hot Pockets! NBR Reviewer

    Reputations:
    759
    Messages:
    2,637
    Likes Received:
    0
    Trophy Points:
    55
    Here is something that may help assuming you're running Ubuntu 7.04. Go into a terminal, and type:

    Code:
    sudo gedit /etc/network/interfaces
    and enter your password. A text editor should pop up with the interfaces file. Simply comment out everything except the "lo" interface as per my example below:

    Code:
    auto lo
    iface lo inet loopback
    
    #auto eth0
    #iface eth0 inet dhcp
    
    #auto eth1
    #iface eth1 inet dhcp
    
    #auto eth2
    #iface eth2 inet dhcp
    
    #auto ath0
    #iface ath0 inet dhcp
    
    #auto wlan0
    #iface wlan0 inet dhcp
    This will especially help if your boot seems to hang at one spot for a long time, as this is usually the problem, especially on newer computers.
     
  6. anchor

    anchor Notebook Enthusiast

    Reputations:
    0
    Messages:
    10
    Likes Received:
    0
    Trophy Points:
    5
    Many thanks. I already did that. ^_^