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.

    Hard drive very slow under Linux (ThinkPad r51e)

    Discussion in 'Linux Compatibility and Software' started by lvt, Jul 31, 2006.

  1. lvt

    lvt Notebook Enthusiast

    Reputations:
    0
    Messages:
    12
    Likes Received:
    0
    Trophy Points:
    5
    I actually run CentOS Linux on my Thinkpad r51e, everything is OK (including WiFi) except the hard drive and the optical drive, they are extremely slow (i can't watch DVD anymore) because I cannot active UDMA mode for both drives, they are running in PIO only.

    Someone has the same problem and maybe the solution ?
     
  2. Pitabred

    Pitabred Linux geek con rat flail!

    Reputations:
    3,300
    Messages:
    7,115
    Likes Received:
    3
    Trophy Points:
    206
    The utility you want is called hdparm. For info on it, type in "hdparm --help" or "man hdparm" at a console prompt.

    To test (as root, or sudo, not sure about CentOS's security structure) you would try typing "hdparm -d 1 /dev/hda" to enable DMA on your hard drive (it may be /dev/sda), and see if that fixes things. Same with /dev/hdb (or hdc, whatever your DVD device is). If those work, see if there's a /etc/hdparm.conf file in your distro. If so, edit that and it should all work out. If not, add the command "hdparm -d 1 /dev/sda" (or whatever you determined to work above) to a startup script that is run as root. Not knowing CentOS, that's as much info as I can really give you.
     
  3. Mr. Foolish

    Mr. Foolish Notebook Guru

    Reputations:
    1
    Messages:
    72
    Likes Received:
    0
    Trophy Points:
    15
    For CentOS, the file should be /etc/sysconfig/harddisks.
     
  4. Pitabred

    Pitabred Linux geek con rat flail!

    Reputations:
    3,300
    Messages:
    7,115
    Likes Received:
    3
    Trophy Points:
    206
    Thanks. I've never used CentOS.