LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 03-07-2007, 07:33 PM   #1
nrodrigo
LQ Newbie
 
Registered: Mar 2007
Distribution: Fedora Core 6 i386
Posts: 12

Rep: Reputation: 0
Laptop is Super Slow


I just wiped my laptop clean with a fresh install of Fedora Core 6. Windows was painstakingly slow so I decided to get rid of it entirely. After installing FC6 (I used the Office option so my system doesn't get weighed down with all of the server software, etc.), I logged into KDE and ran firefox. My load runs at around 2.8-6.0??? So I'm pretty certain that the slowness is caused by hardware.

What could it be?
Bad memory?
Bad hard drive?

Specs:
Acer Aspire 1691WLMi
80GB HDD
512MB DDR
Intel Pentium M, 1.5GHz

Symptons:
  • Apps run slow
  • Once in a while when booting, the HDD is missed completely and proceeds to network connection to find something to boot on (maybe 10% of the time)
 
Old 03-07-2007, 08:24 PM   #2
Brian1
LQ Guru
 
Registered: Jan 2003
Location: Seymour, Indiana
Distribution: Distribution: RHEL 5 with Pieces of this and that. Kernel 2.6.23.1, KDE 3.5.8 and KDE 4.0 beta, Plu
Posts: 5,700

Rep: Reputation: 65
I am guessing the drive from the info I see.
If you check the logs using the ' dmesg ' command after it is running for a while it might be posting smart errors. Smart is a feature of IDE drives and others that can report errors on the fly. Now depending on the install smart may or may not be installed. To check run the command ' rpm -qa | grep smart '. See if it installed. If not then on the cd there should be an rpm called smart*****.rpm. Lets see what you have before going further.

If installed check to see if running using this command as root ' /sbin/service --status-all | grep smart '. If not running run the command as root ' /sbin/service smartd start '. Let it run and see what happens. To start from boot use this command to enable it in runlevels 3, 4, and 5. ' /sbin/chkconfig --level 345 smartd on '

Brian
 
Old 03-08-2007, 01:34 PM   #3
nrodrigo
LQ Newbie
 
Registered: Mar 2007
Distribution: Fedora Core 6 i386
Posts: 12

Original Poster
Rep: Reputation: 0
Didn't see anything specific to smart in dmesg. Here's my output:

Code:
[root@localhost ~]# dmesg | grep smart
[root@localhost ~]# rpm -qa | grep smart
smartmontools-5.36-3.2.fc6
[root@localhost ~]# /sbin/service --status-all | grep smart
capi not installed - No such file or directory (2)
Device not specified in /etc/sysconfig/diskdump
JAVA_EXECUTABLE or HSQLDB_JAR_PATH in '/etc/sysconfig/hsqldb' is set to a non-file.
Server address not specified in /etc/sysconfig/netdump
smartd (pid 2860) is running...
[root@localhost ~]#
 
Old 03-08-2007, 03:55 PM   #4
Brian1
LQ Guru
 
Registered: Jan 2003
Location: Seymour, Indiana
Distribution: Distribution: RHEL 5 with Pieces of this and that. Kernel 2.6.23.1, KDE 3.5.8 and KDE 4.0 beta, Plu
Posts: 5,700

Rep: Reputation: 65
Just run the command dmesg by itself after is up for a bit to see if any errors appear. Other than that no idea as to the problem.

Brian
 
Old 03-08-2007, 05:56 PM   #5
Electro
LQ Guru
 
Registered: Jan 2002
Posts: 6,042

Rep: Reputation: Disabled
Back up the valuable data and use hard drive disk utility from the hard drive manufacture to check the drive. I do not suggest being dependent on S.M.A.R.T. To tell a hard drive is failing, use your hearing and smell to figure out how the life span. If the hard drive makes a lot of noise than it used to, there is a good chance the drive is failing. If you get to the smell state, the hard drive is history and data may be too hard to retrieve.

Notebook hard drives fail a lot sooner than desktop hard drives even though they have +1 million MTBF. In my personal book, MTBF stands for Mean Time Balonne Factor.

Describe your slowness because telling us that Linux is slow is very repetitive at this forum. Linux does not load any libraries that Windows does, so at first it will be slow. As you start using Linux, at the end of the day, Linux will be a lot better loading programs. Linux works better with more RAM because it caches and buffers data more than Windows.

KDE is very bloated (memory and processor resource hogger). Try using XFce4 with Rox or iceWM.
 
Old 03-09-2007, 01:11 AM   #6
nrodrigo
LQ Newbie
 
Registered: Mar 2007
Distribution: Fedora Core 6 i386
Posts: 12

Original Poster
Rep: Reputation: 0
The output is extensive but I posted the last portion which shows errors with hda.

Code:
hda: dma_intr: status=0xd0 { Busy }
ide: failed opcode was: unknown
hda: DMA disabled
hdb: DMA disabled
ide0: reset: success
hda: lost interrupt
hda: lost interrupt
hda: lost interrupt
hda: lost interrupt
hda: lost interrupt
atkbd.c: Unknown key pressed (translated set 2, code 0xb3 on isa0060/serio0).
atkbd.c: Use 'setkeycodes e033 <keycode>' to make it known.
atkbd.c: Unknown key released (translated set 2, code 0xb3 on isa0060/serio0).
atkbd.c: Use 'setkeycodes e033 <keycode>' to make it known.
hda: lost interrupt
hda: lost interrupt
hda: lost interrupt
hda: lost interrupt
hda: lost interrupt
hda: lost interrupt
hda: lost interrupt
hda: lost interrupt
hda: lost interrupt
[root@localhost ~]#
I also found the following but doesn't look like it's related to my problem:

Code:
PCI: Cannot allocate resource region 7 of bridge 0000:00:1c.0
PCI: Cannot allocate resource region 8 of bridge 0000:00:1c.0
PCI: Cannot allocate resource region 9 of bridge 0000:00:1c.0
PCI: Cannot allocate resource region 7 of bridge 0000:00:1c.1
PCI: Cannot allocate resource region 8 of bridge 0000:00:1c.1
PCI: Cannot allocate resource region 9 of bridge 0000:00:1c.1
PCI: Cannot allocate resource region 7 of bridge 0000:00:1c.2
PCI: Cannot allocate resource region 8 of bridge 0000:00:1c.2
PCI: Cannot allocate resource region 9 of bridge 0000:00:1c.2
Quote:
Originally Posted by Brian1
Just run the command dmesg by itself after is up for a bit to see if any errors appear. Other than that no idea as to the problem.

Brian
 
Old 03-09-2007, 01:39 AM   #7
nrodrigo
LQ Newbie
 
Registered: Mar 2007
Distribution: Fedora Core 6 i386
Posts: 12

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by Electro
Describe your slowness because telling us that Linux is slow is very repetitive at this forum. Linux does not load any libraries that Windows does, so at first it will be slow. As you start using Linux, at the end of the day, Linux will be a lot better loading programs. Linux works better with more RAM because it caches and buffers data more than Windows.
Every time I run a command from the terminal, it seems to hang anywhere from 10-30 sec, sometimes minutes even. Windows was the same way. In linux, cold start versus page frames loaded in memory didn't seem to make much of a difference since the problem appears to occur almost consistently.

Quote:
Originally Posted by Electro
KDE is very bloated (memory and processor resource hogger). Try using XFce4 with Rox or iceWM.
Thanks for the tip.
 
Old 03-09-2007, 02:44 AM   #8
r00tb33r
Member
 
Registered: Feb 2007
Distribution: Vector
Posts: 318

Rep: Reputation: 31
Not really sure if it would help, but try disabling Intel SpeedStep from BIOS and see what happens. Perhaps it fails to raise the speed or something. Also I would check the PIO mode of the hard drive and stuff like that...
Run a live-cd distro such as Knoppix and see if its slow. That would rule out the hard drive perhaps. If you still think its the drive, pull out the hard drive, and boot from the CD by itself. That would definitely determine if the hard drive has anything to do with it.
 
Old 03-10-2007, 08:11 AM   #9
Brian1
LQ Guru
 
Registered: Jan 2003
Location: Seymour, Indiana
Distribution: Distribution: RHEL 5 with Pieces of this and that. Kernel 2.6.23.1, KDE 3.5.8 and KDE 4.0 beta, Plu
Posts: 5,700

Rep: Reputation: 65
This is out on a limb here but in the bios if it has Plug and Play and is yes check as no.

Brian
 
Old 03-10-2007, 08:29 AM   #10
dxqcanada
Member
 
Registered: Sep 2006
Location: Canada
Distribution: Gentoo
Posts: 702

Rep: Reputation: 43
Sounds like a problem with the settings of the hard drive.
Run hdparm to see what settings your controller is set to:
Code:
# hdparm -i /dev/hda
# hdparm -cuda /dev/hda

Last edited by dxqcanada; 03-10-2007 at 08:33 AM.
 
Old 03-10-2007, 03:44 PM   #11
nrodrigo
LQ Newbie
 
Registered: Mar 2007
Distribution: Fedora Core 6 i386
Posts: 12

Original Poster
Rep: Reputation: 0
I booted using Knoppix and the performance was excellent. I'm almost convinced that my HDD is the problem. Thanks!

Quote:
Originally Posted by r00tb33r
Not really sure if it would help, but try disabling Intel SpeedStep from BIOS and see what happens. Perhaps it fails to raise the speed or something. Also I would check the PIO mode of the hard drive and stuff like that...
Run a live-cd distro such as Knoppix and see if its slow. That would rule out the hard drive perhaps. If you still think its the drive, pull out the hard drive, and boot from the CD by itself. That would definitely determine if the hard drive has anything to do with it.
 
Old 03-10-2007, 03:55 PM   #12
nrodrigo
LQ Newbie
 
Registered: Mar 2007
Distribution: Fedora Core 6 i386
Posts: 12

Original Poster
Rep: Reputation: 0
Here is my output running hdparm:

Code:
[root@localhost ~]# hdparm -i /dev/hda

/dev/hda:

 Model=IC25N080ATMR04-0, FwRev=MO4OAD4A, SerialNo=MRG40HK4K85YZH
 Config={ HardSect NotMFM HdSw>15uSec Fixed DTR>10Mbs }
 RawCHS=16383/16/63, TrkSize=0, SectSize=0, ECCbytes=4
 BuffType=DualPortCache, BuffSize=7884kB, MaxMultSect=16, MultSect=16
 CurCHS=16383/16/63, CurSects=16514064, LBA=yes, LBAsects=156301488
 IORDY=on/off, tPIO={min:240,w/IORDY:120}, tDMA={min:120,rec:120}
 PIO modes:  pio0 pio1 pio2 pio3 pio4
 DMA modes:  mdma0 mdma1 mdma2
 UDMA modes: udma0 udma1 *udma2 udma3 udma4 udma5
 AdvancedPM=yes: mode=0x80 (128) WriteCache=enabled
 Drive conforms to: ATA/ATAPI-6 T13 1410D revision 3a:  ATA/ATAPI-2 ATA/ATAPI-3 ATA/ATAPI-4 ATA/ATAPI-5 ATA/ATAPI-6

 * signifies the current active mode

[root@localhost ~]# hdparm -cuda /dev/hda

/dev/hda:
 IO_support   =  0 (default 16-bit)
 unmaskirq    =  0 (off)
 using_dma    =  1 (on)
 readahead    = 256 (on)
[root@localhost ~]#
Quote:
Originally Posted by dxqcanada
Sounds like a problem with the settings of the hard drive.
Run hdparm to see what settings your controller is set to:
Code:
# hdparm -i /dev/hda
# hdparm -cuda /dev/hda

Last edited by nrodrigo; 03-10-2007 at 04:14 PM.
 
Old 03-11-2007, 03:43 PM   #13
nrodrigo
LQ Newbie
 
Registered: Mar 2007
Distribution: Fedora Core 6 i386
Posts: 12

Original Poster
Rep: Reputation: 0
New HDD and RAM upgrade

Well, I spent about $180 to install a new hard drive and add more RAM. So far, performance has been outstanding. I guess nowadays we can really only count on laptops being productive for about 2 to 3 years. Thanks to all for the advice!
 
  


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
nfs write == super slow; read == super fast - problem? BrianK Linux - Networking 4 08-23-2007 10:59 PM
Ubuntu 5.04 is super slow? why? linux4life88 Ubuntu 11 07-24-2005 12:53 AM
Super slow network XxSpaceBoyxX Linux - Newbie 8 01-02-2005 01:38 AM
Super slow 3D Accel. Zujin Slackware 3 11-25-2004 03:45 AM
3D Games Super Slow. Mr. Eek Linux - Software 6 05-14-2003 08:52 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 01:44 AM.

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