LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook
User Name
Password
Linux - Laptop and Netbook Having a problem installing or configuring Linux on your laptop? Need help running Linux on your netbook? This forum is for you. This forum is for any topics relating to Linux and either traditional laptops or netbooks (such as the Asus EEE PC, Everex CloudBook or MSI Wind).

Notices


Reply
  Search this Thread
Old 01-03-2010, 07:07 PM   #1
zachstauffer
LQ Newbie
 
Registered: Jan 2010
Distribution: Ubuntu/openSUSE
Posts: 4

Rep: Reputation: 0
VERY slow boot time on laptop


Okay, this is my first time posting here, so bare with me please. I have an Acer Aspire 1810T (I think it's also called a Timeline) and I am currently dual booting Windows 7 and Ubuntu Netbook Remix 9.10. Here's the problem, when I choose Ubuntu in Grub, it takes maybe 5-6 minutes to boot. This can't be right! I have a dual core and 4 gb of ram! I've tried Jolicloud as well before and had the same problem. I thought it was slow because it was pre-beta. On the other hand, my Windows 7 boots in 45 sec.! What might be my problem?

Thanks in advance!
Zach
 
Old 01-03-2010, 08:40 PM   #2
halborr
Member
 
Registered: Aug 2009
Posts: 112

Rep: Reputation: 18
Hmmm...

Could you open up a terminal and run "ls -l /etc/rc.d" and post up the contents? Maybe you're starting way more services than you need.

Also, does it boot faster when you're on a wired internet connection? I know at least on my old computer it would sit and wait for probably 30 seconds waiting for a response from the router.

EDIT: It might help if you posted what the command "dmesg" returns as well.

Last edited by halborr; 01-03-2010 at 08:46 PM.
 
Old 01-03-2010, 09:17 PM   #3
evo2
LQ Guru
 
Registered: Jan 2009
Location: Japan
Distribution: Mostly Debian and CentOS
Posts: 6,724

Rep: Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705
This is why fancy boot screens suck. Is there a key you can press to get Ubuntu to show you the boot messages?

Any Ubuntu users here know how to display the boot messages?

Another option, have a look in /var/log/messages, check the timestamps that correspond to when you last booted the machine, and try to find if there is a process that takes a long time to be started.

Evo2.

Last edited by evo2; 01-03-2010 at 09:21 PM. Reason: /var/log/messages
 
Old 01-04-2010, 09:28 AM   #4
MS-Karl
LQ Newbie
 
Registered: Apr 2006
Posts: 4

Rep: Reputation: 0
To display boot messages on Ubuntu versions prior to 9.10:

sudo gedit /boot/grub/menu.lst

immediately after # # End Default Options # #

title .................................
uuid .................................
kernal ........................ro quiet splash
initrd .................................
quiet

-----------------------------------------------------------------
comment out quiet splash
quiet

thus:

title ...................................
uuid ...................................
kernal ..........................ro #quiet splash
initrd ...................................
#quiet


I haven't yet figured out how to do this in 9.10, but will advise when I do.
 
1 members found this post helpful.
Old 01-04-2010, 10:35 AM   #5
purevw
Member
 
Registered: Jan 2007
Location: Texas
Distribution: OpenSuSE Tumbleweed, Kernel 4.14*
Posts: 137

Rep: Reputation: 52
RE; Very Slow Boot Time On Laptop

There is a known problem with the newest Ubuntu. They are working on a patch. FYI, Cosmic Koala uses grub-2, which is very different than grub. There is no "menu.lst". The boot is controlled by scripts. You could do a web search for grub-2 info. If I remember correctly, during boot on the new Ubuntu, all drives are being scanned even though it is not necessary, taking an unusually long time to boot.
My best solution would be to make sure that you have the latest updates. I triple boot with OpenSuSE, Ubuntu, and XP. I use the grub that comes with OpenSuSE.
 
Old 01-04-2010, 11:16 AM   #6
MS-Karl
LQ Newbie
 
Registered: Apr 2006
Posts: 4

Rep: Reputation: 0
In Ubuntu 9.10:

sudo gedit /etc/default/grub

comment out the line- GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"

which gives you- #GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"

save & quit gedit

sudo update-grub

reboot
 
1 members found this post helpful.
Old 01-04-2010, 02:28 PM   #7
feliznux
LQ Newbie
 
Registered: Dec 2006
Posts: 1

Rep: Reputation: 0
the grub2 has more resources, but was more difficult to customize, I have several distros on hd.
 
Old 01-04-2010, 03:31 PM   #8
zachstauffer
LQ Newbie
 
Registered: Jan 2010
Distribution: Ubuntu/openSUSE
Posts: 4

Original Poster
Rep: Reputation: 0
Thanks for all your replies, but now it won't even boot! It gives me "mountall: error while loading shared libraries" and "init: mountall main process (416) terminated with status 127."
 
Old 01-04-2010, 03:43 PM   #9
zachstauffer
LQ Newbie
 
Registered: Jan 2010
Distribution: Ubuntu/openSUSE
Posts: 4

Original Poster
Rep: Reputation: 0
After rebooting and trying again, it gave me the login prompt but with no gui, and then said it couldn't create files on a read only system. Should I just reinstall?
 
Old 01-05-2010, 10:39 AM   #10
konsultor
LQ Newbie
 
Registered: May 2009
Location: (No. VA) Washington, DC area
Distribution: openSUSE and SLES
Posts: 9

Rep: Reputation: 0
if it's an older notebook...

There might be a problem with APIC. My 6-yr old notebook stalled when booting (openSUSE) until I added
noapic acpi=off
to the boot commands. Solved my problem.
 
Old 01-05-2010, 10:55 AM   #11
Perromuerto
LQ Newbie
 
Registered: Oct 2009
Location: Venezuela
Distribution: Slackware
Posts: 7

Rep: Reputation: 2
The problem is with generic ide and chipset drivers

The kernels that come with the distributions are compiled for every possible hardware. Usually laptops have fancy or strange chipsets, and the generic drivers can not activate the high speed modes for ide interfaces (usually some UDMA level).
The solution is to compile a kernel specifically for your machine. To do that, you need a list of the hardware, which can be obtained using the lspci command. Then download the kernel sources, configure, compile and install it as another entry in your boot choices.

Last edited by Perromuerto; 01-05-2010 at 10:56 AM.
 
Old 01-05-2010, 03:30 PM   #12
zachstauffer
LQ Newbie
 
Registered: Jan 2010
Distribution: Ubuntu/openSUSE
Posts: 4

Original Poster
Rep: Reputation: 0
Thanks for all your advice, but I couldn't boot with the commands konsultor gave me. I couldn't even boot into recovery. I still have access to Windows though.
 
Old 01-06-2010, 09:12 AM   #13
MS-Karl
LQ Newbie
 
Registered: Apr 2006
Posts: 4

Rep: Reputation: 0
Try using Bootchart. (bootchart.org)

Check out the following:

http://linux.aldeby.org/speed-up-you...inux-boot.html
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Slow boot time after update... not upgrade Noahetrex Fedora 3 08-31-2009 03:49 PM
Gutsy Boot-up Time Slow. Ordinary12 Ubuntu 8 02-09-2008 05:06 PM
Very slow boot time with F8 koady Fedora 2 11-20-2007 06:27 AM
slow boot on laptop Slackovado Slackware 19 09-07-2007 10:42 AM
Very slow boot time after hard drive problems. Mountain Man Ubuntu 4 07-01-2007 04:56 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook

All times are GMT -5. The time now is 02:28 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration