LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
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 05-01-2003, 11:44 AM   #1
sbilstein
Member
 
Registered: Apr 2003
Location: south florida
Distribution: red hat 8.0
Posts: 50

Rep: Reputation: 15
Ati Radeon 9000


I have an ati radeon 9000, and redhat says the card isnt supported on redhat 8.0. any ideas on where i could get drivers?
 
Old 05-01-2003, 12:24 PM   #2
membrax
Member
 
Registered: Nov 2002
Location: 50'48''N - 4'21''E
Distribution: SuSE7.1 - SuSE8.1 - SuSE8.2 - RH6.2 - RH7.1 - RH7.3 - RH8.0 - RH9.0 - Fedora Core 1
Posts: 281

Rep: Reputation: 30
Hi !

There are built in drivers, but they do not provide accelerated 3D OpenGL features.

I already posted a very accurate procedure "How-To" in order to make it working nice.

A lot of people tried it and succeded, you will succeed as well.

Before proceeding to that, keep in mind that you'll have to compile the driver for your own kernel & system which means that you HAVE to have your kernel headers installed and all the stuff needed to make a compilation right.
Review your RH8.0 install and check all what's needed for development.

Here we go : http://www.linuxquestions.org/questi...671#post252671

It says :
COMPLETE & DETAILED procedure :

First, visit the Linux section of the nVidia driver download area and get the following two files:

NVIDIA_GLX-1.0-4191.src.rpm (at top of page)
NVIDIA_kernel-1.0-4191.src.rpm (at bottom of page)

Save these files to your machine. Now, open up a terminal (konsole, gnome-terminal) and become root (also called superuser). Change to the directory containing the packages and install them with:

cd /path/to/packages

rpm -i NVIDIA* (or rpm -ivh NVIDIA* for verbose output and to print hash marks [#] indicating installation progress)

Since these are only source packages, we haven't actually installed any drivers yet, we've just placed the necessary files onto the system to get us started. To verify that everything is where it should be, issue the command:

ls /usr/src/redhat/SPECS/

You should see two files listed: NVIDIA_GLX.spec and NVIDIA_kernel.spec These two files simply tell RPM how to create packages using the source files. These source files were installed into /usr/src/redhat/SOURCES. Once you're satisfied everything went according to plan:

cd /usr/src/redhat/SPECS

This is the directory the source packages were installed into. /usr/src also contains the source code for the Linux kernel itself (assuming it was selected when you installed Psyche). Once inside the /usr/src/redhat directory, you might want to take a look around and see if you can get a feel for what the various directories are for. If you aren't comfortable with that, don't worry, it's not necessary. Next, the hard part (if you've been exploring, before you proceed make sure your working directory is /usr/src/redhat/SPECS – you can use the pwd command to display this for you):

rpmbuild -bb NVIDIA* (“rpmbuild” should be self-explanatory, the bb means “build binary” -- man rpmbuild at the console or #rpmbuild into Konqueror's address bar or a command box for more information)

It should only take a few minutes for the two packages to be built. You'll see information scrolling by as your request is carried out. Don't worry if you don't know what any of it means, since not many people do. Once the build process finishes, you're almost there. Now, to install the packages we just built:

cd /usr/src/redhat/RPMS/i386/ (this is where rpmbuild puts the packages after they are ready)

rpm -Uvh NVIDIA*

RPM will process for a moment, indicating its progress with hash marks and by displaying a percentage. If all has gone well, you should see both packages install and then be returned to a command prompt. At this point, I would suggest you view the README located on nVidia's website, as it contains a great deal of information about using, troubleshooting and customizing the nVidia drivers. For the impatient, I'll include here the minimum changes you need to make to your system to get the drivers working.

At this point the drivers themselves are installed and ready to go. Now all we have to do is tell XFree86 we want to use them instead of its own drivers. Since this requires making changes to the (vitally important!) XFree86 configuration file, we'll make a backup copy of it before going any further. This is extremely important! Without a clean working copy of this file, you will not be able to access your desktop.

cp /etc/X11/XF86Config /etc/X11/XF86Config-original

Now if you manage to mangle XF86Config you can copy XF86Config-original to XF86Config and start over with a known-good configuration. For those of us who aren't vi or emacs aficionados, Red Hat has included an excellent screen-based text editor called pico. Considering the number of capable and friendly GUI-based editors included with modern Linux distributions, you might question the need for using or even being aware of console-based alternatives -- until, like now, you're doing something that has the potential to render your GUI unavailable. As a general rule, you should always have a familiar console-based editor available for just such times. There are few things more frustrating than needing to make a simple change to a configuration file and being stumped because you have no idea how to do so from the command line. That being said, still as root user, issue the command:

pico -w /etc/X11/XF86Config (always use the -w switch with configuration files, since it prevents pico from applying any line wrapping and thus mangling the file)

Locate the line containing Driver "nv" and replace it with Driver "nvidia". To search in pico you press CTRL+W and enter the search term (shortcuts are displayed at the bottom of the interface). Now, find the section called Module and make sure Load "glx" is one of the entries. If not, add it to the list. Also in the Module section, remove or comment out any lines that contain Load "dri" and Load "GLcore". (You comment out a line by prefacing it with a hash mark, as in #Load "GLcore".)

That's it! You should be ready to go. Save all your work, and press CTRL-ALT-BACKSPACE to restart the X server. If all went well, you should see the nVidia splash screen pop up briefly and then be presented with the standard GDM login screen. Once your desktop has loaded, press ALT+F2 to bring up a command box and type in tuxracer (this assumes TuxRacer is installed, of course) to test your new drivers. If something has gone wrong along the way, make sure the nVidia packages are installed correctly and that your changes to XF86Config are correct (now you'll see why I pointed out the need for a backup file and an easy-to-use editor!).

rpm -qa |grep NVIDIA will query the RPM database for any installed package with "NVIDIA" in its name (as always, case matters). If you don't see both packages listed, something has gone wrong. Back up to the section that explains building the packages and try again.


Have fun !
 
Old 05-02-2003, 01:53 PM   #3
Dusan
LQ Newbie
 
Registered: Aug 2002
Location: Belgrade, Serbia
Posts: 24

Rep: Reputation: 15
But he has ATi Radeon card not nvidia.

For Radeons go to ATi web site and get drivers for XFree 4.1.0 and 4.2.0 and for X 4.3.0 go to http://www.schneider-digital.de/html...nload_ati.html and download drivers for FireGL 8700/8800. Except for Firegl 8x00 cards these work for 8500/9000/9100 Radeons.
 
Old 05-02-2003, 09:31 PM   #4
Timothy Miller
Moderator
 
Registered: Feb 2003
Location: Arizona, USA
Distribution: Debian, EndeavourOS, OpenSUSE, KDE Neon
Posts: 4,005
Blog Entries: 26

Rep: Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521Reputation: 1521
How about the 9500/9600/9700/9800? Will those drivers also work for them?
 
Old 05-03-2003, 02:55 AM   #5
Dusan
LQ Newbie
 
Registered: Aug 2002
Location: Belgrade, Serbia
Posts: 24

Rep: Reputation: 15
Quote:
Originally posted by Timothy Miller
How about the 9500/9600/9700/9800? Will those drivers also work for them?
Yes, but those for FireGL X1/Z1.
 
Old 05-05-2003, 09:39 AM   #6
jspenguin
Member
 
Registered: Feb 2003
Location: Wichita, KS
Distribution: Heavily modified Redhat
Posts: 194

Rep: Reputation: 30
I have some sort of radeon that I want to replace my NVidia card with, but whenever I use it (with the ati module) I get flickering. Any suggestions?

Also will DRI work with radeon?
 
Old 05-05-2003, 12:40 PM   #7
Dusan
LQ Newbie
 
Registered: Aug 2002
Location: Belgrade, Serbia
Posts: 24

Rep: Reputation: 15
Quote:
Originally posted by jspenguin
I have some sort of radeon that I want to replace my NVidia card with, but whenever I use it (with the ati module) I get flickering. Any suggestions?

Also will DRI work with radeon?
What sort of Radeon? And what nVidia card are you replacing?

I have Radeon9500 and it works great with those drivers for FireGL X1/Z1, 3D opengl, DRI, overlay, games, everything works, but only if I'm root, if I log as user only 2d works, and for everything other it other I got error that it's not permited. I tried all those chmods, editing XFree86-4 and still with no success.
 
Old 05-12-2003, 09:10 AM   #8
jspenguin
Member
 
Registered: Feb 2003
Location: Wichita, KS
Distribution: Heavily modified Redhat
Posts: 194

Rep: Reputation: 30
I don't know what kind of radeon (maybe 9600). I want to replace my RIVA TNT2.
 
Old 05-12-2003, 09:12 AM   #9
jspenguin
Member
 
Registered: Feb 2003
Location: Wichita, KS
Distribution: Heavily modified Redhat
Posts: 194

Rep: Reputation: 30
As for DRI, the documentation says edit XF86Config and include:

Section "DRI"
Mode "0666"
EndSection

You mentioned XFree86-4, I wasn't aware there was another config other than XF86Config.
 
Old 05-12-2003, 01:00 PM   #10
Dusan
LQ Newbie
 
Registered: Aug 2002
Location: Belgrade, Serbia
Posts: 24

Rep: Reputation: 15
Radeon9600 is OK card.

And the second one, yes I meant XF86Config-4 (or XF86Config, doesn't matter) and I have that dri section, and still nothing.
 
  


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
ATi Radeon 9000 Pro and Radeon(flgrx) driver included on Mandrake 10.1 Official St3althcAt Linux - Hardware 1 05-07-2005 08:30 PM
tv out with ATI Radeon 9000 youneedaclue Linux - Hardware 1 08-10-2004 10:42 PM
ATI Radeon 9000 + TV-OUT Key Linux - Hardware 0 06-09-2004 05:48 AM
ATI Radeon 9000 Perdido Linux - Hardware 1 10-04-2003 05:35 PM
ATI Radeon 9000 ??? bryanj Linux - Newbie 5 09-12-2003 04:49 AM

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

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