LinuxQuestions.org
Help answer threads with 0 replies.
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 09-02-2003, 12:26 PM   #1
v38zy
LQ Newbie
 
Registered: Aug 2003
Posts: 5

Rep: Reputation: 0
Angry Asus A7n8x Deluxe (Nforce 2 chipset), rh9, radeon 9500 pro


Hi everyone,

I have been trying for quite a while to convert my pc over to rh9. The only reason why I haven't left win xp completely is because I cannot get 3d graphics support to work....

Here is what I have tried:

1) Fresh intsall of rh9
2) Patch the kernel to support Nforce2 chipset
3) Install the schneider digital firegl drivers for my radeon

...but it doesn't work!

if I try to 'insmod agpgart' i get:

...
agpgart: no supported devices found.
...

I read somewhere that this is because the nvidia supplied patch to support the nforce2 chipset only supports nvidia graphics cards...Is this true?

Does anyone know if there is a way to fix this?

Thanks,
Andy H
v38zy@unb.ca

Specs:
Redhat 9
Asus A7N8x Deluxe
ATI Radeon 9500 pro
Athlon XP 3200+
512MB DDR

Last edited by v38zy; 09-02-2003 at 12:29 PM.
 
Old 09-02-2003, 02:46 PM   #2
scobiej
Member
 
Registered: Aug 2003
Location: London
Distribution: Redhat, SuSE, Ubuntu
Posts: 75

Rep: Reputation: 15
You don't have an NVidia card, that's why. You have an ATI card which is a completely different beast.
I have an ATI Radeon 9000 Pro and, after some reading and googling, got the hardware 3D acceleration to work perfectly. Basically, read the information available at ATI's linux XFree86 pages

That will tell you where to download the correct rpm which you'll need. The 9500 isn't mentioned but it is basically a scaled down 9700 so should work OK.

One problem I did encounter with the configuration though was that the BusID line in /etc/X11/XF86Config was incorrect. Don't know why as a quick check of the log file in /var/log/XFree86.0.log showed the correctly probed value. I therefore made the appropriate change :-

# BusID "PCI:1:2:9" # vendor=1002, device=496e
BusID "PCI:1:5:0" # vendor=1002, device=496e


Everything worked from there on and all those OpenGL apps now fly!
Let me know if you get it working.
 
Old 09-02-2003, 06:20 PM   #3
v38zy
LQ Newbie
 
Registered: Aug 2003
Posts: 5

Original Poster
Rep: Reputation: 0
Thx...

Thx scobiej,

But I think that the problem that I am having is due to the fact that the NForce2 Chipset on the Asus Mobo is not supported, thus I can't get AGP support.

Does anyone know if there is a solution for this problem?

Thanks,
Andy H
v38zy@unb.ca
 
Old 09-03-2003, 03:25 AM   #4
scobiej
Member
 
Registered: Aug 2003
Location: London
Distribution: Redhat, SuSE, Ubuntu
Posts: 75

Rep: Reputation: 15
Quick search found this article on your motherboard and redhat 8.
Don't know how much relevance it is to redhat 9 as I didn't read too much of it but it did state that you SHOULDN'T use the NVidia rpm. Again, don't know if this applies to RH9. Sorry about the confusion.
 
Old 09-08-2003, 06:57 PM   #5
Capitan
LQ Newbie
 
Registered: Sep 2003
Distribution: MDK 9.1
Posts: 3

Rep: Reputation: 0
with the 2.4.22 kernel you can run your card in 3d.
just make xconfig and activate the nforce2 support.

after that install the driver from schneider-digital.de and compile the driver: cd /lib/modules/fglrx/build_mod
./make.sh
cd..
./make_install.sh

after that run the fglrxconfig to build a new XF86config.
and last but not least type /sbin/insmod agpgart

after you did this you can typer startx and test if it works with glxgears.

my sys: abit nf7-radeon9700pro-1024mb ddr3200

Last edited by Capitan; 10-24-2003 at 09:49 AM.
 
Old 09-08-2003, 07:29 PM   #6
v38zy
LQ Newbie
 
Registered: Aug 2003
Posts: 5

Original Poster
Rep: Reputation: 0
Thx for your help,

I will give this a try...
 
Old 10-22-2003, 01:04 PM   #7
underling
LQ Newbie
 
Registered: Sep 2003
Location: Scotland
Distribution: Redhat 9
Posts: 24

Rep: Reputation: 15
Quote:
Originally posted by Capitan
with the 2.4.22 kernel you can run your card in 3d.
just make xconfig and activate the nforce2 support.

after that install the driver from schneider-digital.de and compile the driver: cd /lib/modules/fglrx/build_mod
./make.sh
cd..
:/make_install.sh

after that run the fglrxconfig to build a new XF86config.
and last but not least type /sbin/insmod agpgart

after you did this you can typer startx and test if it works with glxgears.

my sys: abit nf7-radein9700pro-1024mb ddr3200
Hi. I followed these instructions and I *think* it worked. I could rmmod/insmod agpgart without errors but when I logged out of X after running fglrxconfig, X seemed to freeze. i couldn't switch to the console by CTRL+ALTing. All I could do was CTRL+ALT+DEL and wait for the system to reboot. I chose to use the external agpgart module, was this correct?

Any ideas? Also, how do I fix it?
 
Old 10-24-2003, 09:50 AM   #8
Capitan
LQ Newbie
 
Registered: Sep 2003
Distribution: MDK 9.1
Posts: 3

Rep: Reputation: 0
do you have a kernel panic when you type modprobe agpgart ?

I selected the external agpgart module.
and did you activate the nforce chipset support in the character device section of xconfig ?

Last edited by Capitan; 10-24-2003 at 09:52 AM.
 
Old 10-24-2003, 07:36 PM   #9
UnTamed
Member
 
Registered: Dec 2002
Location: Qc, Canada
Distribution: CRUX
Posts: 317

Rep: Reputation: 30
Since you wanna use the newer kernel's agpgart with added support for nForce2 [...as opposed to the driver's agpgart which don't support nV], during fglrxconfig you need to select
Option "UseInternalAGPGART" "no"

...or edit your XF86Config-4 manually.

Last edited by UnTamed; 10-24-2003 at 07:38 PM.
 
  


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
Help with Radeon 9500 pro in RH9 v38zy Linux - Hardware 2 08-30-2003 10:27 AM
Asus A7N8X Deluxe..???? tricky_linux Linux - Hardware 1 08-01-2003 06:18 AM
3 Questions: Radeon 9500 Pro, Nforce and AGPGART.. Gymnae Linux - Newbie 3 07-09-2003 07:39 PM
linux rh9+ nforce 2 asus a7n8x lammmetak Linux - Hardware 10 06-01-2003 04:06 PM
Asus A7N8X Deluxe VoyagerDL Linux - Hardware 1 03-15-2003 09:31 AM

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

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