LinuxQuestions.org
Help answer threads with 0 replies.
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 02-19-2006, 10:42 AM   #1
dublin_101
LQ Newbie
 
Registered: Feb 2006
Posts: 16

Rep: Reputation: 0
IBM ThinkPad R40 Problem...Redhat and Fedora (not to mention the bios)


Hi guys,

Yes I'm a newbie...I want(ed) to learn Linux so I tried to install Fedora Core 4 on my laptop.....Unfortunately it burned my bios bad and now the ibm bios doesn't even work...ah well, I'm taking it in my stride and not giving up on Linux that quick.....Nevertheless, the OS ran but with the graphics card problem....which seems to be common on this website.

I searched around, tried to install some driver for it, but no luck...i didn't even know how to uninstall it...doh

the graphics card is the ati radeon 7500 mobility......ibm pentium 4 M 1.8ghz......I need to have the screen operate at at least 1024 x 768...whereas at the moment it is on 800 x 600, which is nowhere near enough.....

I now have installed red hat enterprise linux 4 hoping it would fix it, but no luck.

So any assistance would be greatly appreciated guys...please, in as comprehendable words as possible...I'm a real greenhorn to linux, but, I want to learn....

THanks
 
Old 02-19-2006, 11:26 AM   #2
slackhack
Senior Member
 
Registered: Jun 2004
Distribution: Arch, Debian, Slack
Posts: 1,016

Rep: Reputation: 47
i can try to help you out, but what do you mean, it "burned your bios?" i've never heard of that before. i don't see how it would even run without a bios -- shouldn't you get that fixed first before dealing with an OS?
 
Old 02-19-2006, 12:58 PM   #3
XavierP
Moderator
 
Registered: Nov 2002
Location: Kent, England
Distribution: Debian Testing
Posts: 19,192
Blog Entries: 4

Rep: Reputation: 475Reputation: 475Reputation: 475Reputation: 475Reputation: 475
Does the "Access IBM" button work when you first boot? Can you use F12 to bring up the boot order list?
 
Old 02-20-2006, 12:11 AM   #4
dublin_101
LQ Newbie
 
Registered: Feb 2006
Posts: 16

Original Poster
Rep: Reputation: 0
Hi guys....well by burnt, I meant I can no longer access my bios...not at all and the access ibm button does not work...so I anticipate that the linux installation installed its own on the bios.....nevertheless I'm not concerned about this at all as it has happened before and I just re-installed windows (with f12) and flashed the bios.......

NOW...

No more windows, this time around I am going to do the hard work to learn linux and stick to it.......So my problem is the graphics driver......my ibm's native resolution is 1400 x 1050, something I'd like to have....but it is obvious from research that ATI drivers don't do too well with linux.......so please help me install this graphic card so that I can enjoy a decent resolution.....ati radeon mobility 7500....

thanks guys...
 
Old 02-20-2006, 08:40 AM   #5
slackhack
Senior Member
 
Registered: Jun 2004
Distribution: Arch, Debian, Slack
Posts: 1,016

Rep: Reputation: 47
i don't think linux could have done anything to your bios, but maybe i'm wrong. if it were me, i first would reinstall windows and flash the bios (if that's the only way you can do it, if you can do it through linux, do it that way and save yourself the trouble).

i use the linux drivers for my mobile radeon, and it gives me 1400x1050. the 3D works well enough for what i use the laptop for at around ~850fps glxgears. the easiest way by far is to build all the appropriate agp/ati/drm stuff directly into the kernel (if it's not already there in your distro kernel, which it might very well be), and then just add the right options to xorg.conf. here's some of those parts of my config file:
Code:
Section "Module"
        Load    "bitmap"
        Load    "dbe"
        Load    "ddc"
        Load    "dri"
        Load    "extmod"
        Load    "fbdwvhw"
        Load    "freetype"
        Load    "glx"
        Load    "int10"
        Load    "record"
        Load    "type1"
        Load    "vbe"
EndSection


Section "Device"
        Identifier      "ATI Radeon Mobility 7500 (M7 LW)"
        Driver          "radeon"
        BusID           "PCI:1:0:0"
        Option          "AGPMode"       "4"
        Option          "EnablePageFlip" "on"
        Option          "DPMS"
EndSection

Section "Monitor"
        Identifier      "Generic Monitor"

EndSection

Section "Screen"
        Identifier      "Default Screen"
        Device          "ATI Radeon Mobility 7500 (M7 LW)"
        Monitor         "Generic Monitor"
        DefaultDepth    24

        SubSection "Display"
                Depth           24
                Modes           "1400x1050"
        EndSubSection
EndSection

Section "ServerLayout"
        Identifier      "Default Layout"
        Screen          "Default Screen"
        InputDevice     "Generic Keyboard"
        InputDevice     "Configured Mouse"
        InputDevice     "Synaptics Touchpad"

        Option          "BlankTime"     "0"
        Option          "StandbyTime"   "10"
        Option          "SuspendTime"   "30"
        Option          "OffTime"       "60"
EndSection

Section "DRI"
        Mode    0666
EndSection

Last edited by slackhack; 02-20-2006 at 08:44 AM.
 
Old 02-21-2006, 06:15 AM   #6
dublin_101
LQ Newbie
 
Registered: Feb 2006
Posts: 16

Original Poster
Rep: Reputation: 0
that sounds great brother........but I can barely understand a word of that.....

Can you please in very simple terms ask me how to 1. download that file, 2. install it, and then 3. have it work fine?

ps..forget the bios, that is easy, and just as you said it, i have done that before, but like I said, no more windows, my windows got thrown out the windows...

so please help. thanks
 
Old 02-21-2006, 04:43 PM   #7
lestoil
Member
 
Registered: Apr 2004
Location: new york
Distribution: win2k,ubuntu,sw13,arch,centos5.3
Posts: 815

Rep: Reputation: 31
Try LQ tutorial Installing ATIs Proprietary Drivers by TheRepublican. Find it by getting to linuxquestions.org and clicking on tutorials (instead or forum) then Hardware. Then configure xorg like slackhack suggests.
There are many Think Pad T40 linux install notes on web at tuxmobile or linux-on-laptop to help you too. Good luck.

Last edited by lestoil; 02-21-2006 at 04:45 PM.
 
Old 02-22-2006, 01:29 AM   #8
dublin_101
LQ Newbie
 
Registered: Feb 2006
Posts: 16

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by slackhack
i don't think linux could have done anything to your bios, but maybe i'm wrong. if it were me, i first would reinstall windows and flash the bios (if that's the only way you can do it, if you can do it through linux, do it that way and save yourself the trouble).

i use the linux drivers for my mobile radeon, and it gives me 1400x1050. the 3D works well enough for what i use the laptop for at around ~850fps glxgears. the easiest way by far is to build all the appropriate agp/ati/drm stuff directly into the kernel (if it's not already there in your distro kernel, which it might very well be), and then just add the right options to xorg.conf. here's some of those parts of my config file:
Code:
Section "Module"
        Load    "bitmap"
        Load    "dbe"
        Load    "ddc"
        Load    "dri"
        Load    "extmod"
        Load    "fbdwvhw"
        Load    "freetype"
        Load    "glx"
        Load    "int10"
        Load    "record"
        Load    "type1"
        Load    "vbe"
EndSection


Section "Device"
        Identifier      "ATI Radeon Mobility 7500 (M7 LW)"
        Driver          "radeon"
        BusID           "PCI:1:0:0"
        Option          "AGPMode"       "4"
        Option          "EnablePageFlip" "on"
        Option          "DPMS"
EndSection

Section "Monitor"
        Identifier      "Generic Monitor"

EndSection

Section "Screen"
        Identifier      "Default Screen"
        Device          "ATI Radeon Mobility 7500 (M7 LW)"
        Monitor         "Generic Monitor"
        DefaultDepth    24

        SubSection "Display"
                Depth           24
                Modes           "1400x1050"
        EndSubSection
EndSection

Section "ServerLayout"
        Identifier      "Default Layout"
        Screen          "Default Screen"
        InputDevice     "Generic Keyboard"
        InputDevice     "Configured Mouse"
        InputDevice     "Synaptics Touchpad"

        Option          "BlankTime"     "0"
        Option          "StandbyTime"   "10"
        Option          "SuspendTime"   "30"
        Option          "OffTime"       "60"
EndSection

Section "DRI"
        Mode    0666
EndSection

bro, i copied and pasted this to my config file and all it gave me was a blue screen at start up telling me it was wrong......please give me the whole code and not just parts of it.......thanks....ps... i also did rpm -Uh --force flgr.rpm package


and then i added that code to the config file...i deleted all the text in the old one and pasted yours..no luck
 
Old 02-22-2006, 01:30 AM   #9
dublin_101
LQ Newbie
 
Registered: Feb 2006
Posts: 16

Original Poster
Rep: Reputation: 0
by the way, i entered sh at the command line and it gave me 3.00....so i figure that is the kernel version.
 
Old 02-22-2006, 09:55 AM   #10
slackhack
Senior Member
 
Registered: Jun 2004
Distribution: Arch, Debian, Slack
Posts: 1,016

Rep: Reputation: 47
uname -r gives the kernel version. but what's more important is what's in your kernel.

run the command "xorgconfig" as root and enter the right options for your hardware. it'll ask you to save it, say yes. replace what you need to afterward with the info from what i posted. my entire file won't help you because i might have different options, touchpad drivers, etc. i posted the relevant parts for you to be able to work with it. just be careful and only replace exactly what you need to and don't take anything else out. the file is xorg.conf in the /etc/X11/ directory. you'll have to be root to edit that file, too.

if that doesn't work, we'll have to see if you have the right kernel options or the modules loaded. if the kernel that comes with your distro doesn't have the right options, you'll have to rebuild the kernel.

gl


p.s. if you can't get it, post your xorg.conf file after going through the xorgconfig, or email it to me at slackhack-at-linuxmaildotorg, and i'll take a look at it for you. it's better if you learn how to do it yourself, but if you see what to change it might help you learn it.

Last edited by slackhack; 02-22-2006 at 10:04 AM.
 
Old 02-23-2006, 10:10 AM   #11
dublin_101
LQ Newbie
 
Registered: Feb 2006
Posts: 16

Original Poster
Rep: Reputation: 0
i'm re-installing the whole system again

i am starting from scratch, although this is the last time.....i'll have to try and find that windows cd if i can't fix it this time.....

i'll download that file from ati site and then i'll make those adjustments to the file as per your file.
 
Old 02-23-2006, 10:44 AM   #12
dublin_101
LQ Newbie
 
Registered: Feb 2006
Posts: 16

Original Poster
Rep: Reputation: 0
i just re-installed red hat..........

i didn't download any drivers from anywhere........

once it was installed, i went into the x11 config file.......i cut and pasted your config sections over the relevant ones in mine.....i restarted, and bang, blue screen, fatal error.........

all for one driver.........and i used to think windows drivers were complicated!

i think i'll have another 6 month break from linux...until my next attempt.
 
Old 02-23-2006, 02:24 PM   #13
slackhack
Senior Member
 
Registered: Jun 2004
Distribution: Arch, Debian, Slack
Posts: 1,016

Rep: Reputation: 47
did you back up your xorg.conf file before you changed it? if you did, post the original and we can try to fix it for you. redhat might not have the right kernel options, or modules loaded, might be the underlying problem.
 
Old 02-24-2006, 04:35 PM   #14
dublin_101
LQ Newbie
 
Registered: Feb 2006
Posts: 16

Original Poster
Rep: Reputation: 0
guess what..........

i decided to put my old programmers hat on........i went into the xorg.conf file and starting adding resolutions and basically it all worked out fine.

i think i changed the name of the monitor also as per your file and made sure all identifier names were matching and now i am running with a 1400x1050 resolution.

thanks very much for your assistance...much appreciated.
 
Old 02-24-2006, 04:57 PM   #15
dublin_101
LQ Newbie
 
Registered: Feb 2006
Posts: 16

Original Poster
Rep: Reputation: 0
NOW, perhaps you can help me to get my mini pcmcia wifi card installed..........
 
  


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
IBM Thinkpad R40 - Sound tests fine during install but doesn't work after! sfunk1x Linux - Laptop and Netbook 2 01-26-2005 07:06 AM
BIOS Problem on IBM Thinkpad 600e Zykaz Linux - Laptop and Netbook 0 08-07-2004 01:12 PM
Problems Install RHE3 or RH9 on a IBM Thinkpad R40 using VM Ware crashedspine Linux - Laptop and Netbook 4 07-31-2004 02:31 PM
Redhat 9 + ibm R40 + madwifi r52 Linux - Newbie 0 02-19-2004 04:17 AM
IBM ThinkPad R40 Sumit Rajan Linux - Laptop and Netbook 4 12-02-2003 12:30 PM

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

All times are GMT -5. The time now is 08:38 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