LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 08-22-2004, 07:36 PM   #1
xmeson
Member
 
Registered: Jul 2003
Location: Random
Distribution: Slackware
Posts: 63

Rep: Reputation: 15
Angry ATI 9800XXL XOrg and rendering


name of display: :0.0
Xlib: extension "XFree86-DRI" missing on display ":0.0".{-- This part bothers me
display: :0 screen: 0
direct rendering: No {------ This part bothers me greatly
server glx vendor string: SGI
server glx version string: 1.2
server glx extensions:
GLX_ARB_multisample, GLX_EXT_visual_info, GLX_EXT_visual_rating,
GLX_EXT_import_context, GLX_SGI_make_current_read, GLX_SGIS_multisample
client glx vendor string: ATI
client glx version string: 1.3
client glx extensions:
GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_EXT_import_context,
GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_ATI_pixel_format_float,
GLX_ATI_render_texture
GLX extensions:
GLX_ARB_multisample, GLX_EXT_visual_info, GLX_EXT_visual_rating,
GLX_EXT_import_context
OpenGL vendor string: Mesa project: www.mesa3d.org
OpenGL renderer string: Mesa GLX Indirect
OpenGL version string: 1.2 (1.4 Mesa 5.0.2)
OpenGL extensions:
GL_ARB_imaging, GL_ARB_multitexture, GL_ARB_texture_border_clamp,
GL_ARB_texture_cube_map, GL_ARB_texture_env_add,
GL_ARB_texture_env_combine, GL_ARB_texture_env_dot3,
GL_ARB_transpose_matrix, GL_EXT_abgr, GL_EXT_blend_color,
GL_EXT_blend_minmax, GL_EXT_blend_subtract, GL_EXT_texture_env_add,
GL_EXT_texture_env_combine, GL_EXT_texture_env_dot3,
GL_EXT_texture_lod_bias
glu version: 1.3
glu extensions:
GLU_EXT_nurbs_tessellator, GLU_EXT_object_space_tess

visual x bf lv rg d st colorbuffer ax dp st accumbuffer ms cav
id dep cl sp sz l ci b ro r g b a bf th cl r g b a ns b eat
----------------------------------------------------------------------
0x22 24 tc 0 24 0 r y . 8 8 8 0 0 16 0 0 0 0 0 1 0 None
0x23 24 tc 0 24 0 r y . 8 8 8 0 0 16 8 16 16 16 0 1 0 None
0x24 24 tc 0 32 0 r y . 8 8 8 8 0 16 8 16 16 16 16 1 0 None
0x25 24 tc 0 32 0 r . . 8 8 8 8 0 16 8 16 16 16 16 1 0 None


My slack installation is not too bad i mean it is up 65% we are getting there. But the ATI people donī t work with the xorg people and the Slackware people don't work with the XFree people. Which leaves people like me a lot of oppotunities to really screw things up.

The story(lines/code) above is from my box after i said:

glxinnfo

the part wher it says;

direct rendering: No

should read

direct rendering: Yes (read it from somewhere).

How i got here?

I used XFree anyway with ATI 4.3 series but i changed the name of the file ( does not sound very intelligent to me but i read it somewhere --- that is even thicker on my part, i am desperate)

So once more ATI grpahics anyone?

Thanks good people of LQ,

xmeson.

Last edited by xmeson; 08-22-2004 at 07:39 PM.
 
Old 08-22-2004, 08:22 PM   #2
m0rt3r
Member
 
Registered: Mar 2004
Distribution: slackware 10
Posts: 75

Rep: Reputation: 15
According to your output it looks like the ati driver isn't loading.
Quote:
OpenGL vendor string: Mesa project: www.mesa3d.org
OpenGL renderer string: Mesa GLX Indirect
OpenGL version string: 1.2 (1.4 Mesa 5.0.2)
OpenGL extensions:
that should be something like this:
Quote:
display: :0.0 screen:0
OpenGL vendor string: ATI Technologies Inc.
OpenGL renderer string: RADEON your card number i.e 9600
OpenGL version string: the version of the driver.
Try doing the following to see if the fglrx modules is being used
Code:
lsmod | grep fglrx
if you don't see anything after doing that then the modules is not being loaded, go to text mode by issuing the command
Code:
init 3
then probe the modules manually by doing the following:
Code:
modprobe fglrx
you should also check that the agpgart modules is being loaded.
Code:
lsmod |grep agpgart
if this modules is not being loaded do
Code:
 /sbin/insmod agpgart
after probing the two modules check again if they are being loaded by doing the lsmod | grep fglrx, lsmod |grep agpgart
now go to multiuser mode
Code:
 init 4
and at a terminal do
Code:
fglrxinfo
this should output ati instead of mesa.
After all that mess if the fglrxinfo is now outputting ati instead of mesa you can issue the following command
Code:
 glxinfo | grep rendering
to make sure the rendering is saying yes
Man i sure hope i didn't confuse you, hopefully this helps
By the way after installing the package, did you do fglrx, i know that's a dumb question but i just want to make sure.
 
Old 08-23-2004, 04:02 AM   #3
xmeson
Member
 
Registered: Jul 2003
Location: Random
Distribution: Slackware
Posts: 63

Original Poster
Rep: Reputation: 15
Thanks, everything works as you have advised but the only problem is that when the reboot the machine, it does not keep these settings?
 
Old 08-23-2004, 05:54 AM   #4
m0rt3r
Member
 
Registered: Mar 2004
Distribution: slackware 10
Posts: 75

Rep: Reputation: 15
After doing that you should be able to reboot and still have the ati modules loaded. Well actually one time i had the same problem, each time i rebooted the settings were gone, what i did back then was load the module, i put the fglrx module either on the /etc/modprobe.conf or /etc/modules.conf after than whenever i rebooted the setting were kept in place. Or i guess you can also add this to the /etc/rc.d/rc.modules file
with your favorite editor just add a line to either of the three files /etc/modprobe.conf /etc/modules.conf /etc/rc.d/rc.modules
Code:
#this loads the module needed for the ati video card driver to work
/sbin/modprobe fglrx
By the way i'm not really sure to which of the three you should add the line to, but i know is to one of them. For some reason when i reinstall slackware and then installed the driver again and follow all the steps i mention before, the modules always were loaded, they still are. I really hope this helps you out.
 
Old 08-23-2004, 09:50 AM   #5
xmeson
Member
 
Registered: Jul 2003
Location: Random
Distribution: Slackware
Posts: 63

Original Poster
Rep: Reputation: 15
Brilliant!!! Thanks

/etc/modules.conf it is not a good idea to modify this file after runing alsaconfig on it.

I have an XP installation i must say the graphics seems to do better there.

Do you have any idea how i can control sound or get CD to play in my Slackpartition
 
Old 08-23-2004, 12:59 PM   #6
suslik
Member
 
Registered: Jul 2004
Distribution: OpenSuse 10.x
Posts: 262

Rep: Reputation: 30
Quote:
Originally posted by xmeson
Brilliant!!! Thanks
Do you have any idea how i can control sound or get CD to play in my Slackpartition
Lotsa threads on that in this forum. Start with this one ("How I do it all)
 
Old 08-26-2004, 04:58 AM   #7
xmeson
Member
 
Registered: Jul 2003
Location: Random
Distribution: Slackware
Posts: 63

Original Poster
Rep: Reputation: 15
Though i admit that is one of the most helpful linux reading i have seen. But i have used it and alsaconfig got the sound up in the first place but the volume is only two states. Mute and very loud. I have tried more states for xmms more states cannot seem to get the configuration properly.

-xmeson.
 
Old 08-26-2004, 05:10 PM   #8
suslik
Member
 
Registered: Jul 2004
Distribution: OpenSuse 10.x
Posts: 262

Rep: Reputation: 30
Quote:
Originally posted by xmeson
the volume is only two states. Mute and very loud.
8| What do your alsamix/kmix other sound players show?
 
  


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
Need help with direct rendering through Xorg Slimster Debian 3 09-28-2005 07:38 AM
xorg, can't enable direct rendering, logfile doesn't update Radeon 7000 AGP slackwarefan Linux - Software 0 04-11-2005 10:34 PM
ATI Drivers 3.12.0 with Xorg 6.7, Xorg 6.8 Gary987 Linux - Hardware 0 09-15-2004 07:10 PM
ATI Graphics Card and Rendering Linux Vs. ATI xmeson Slackware 2 09-02-2004 12:09 PM
Once more, Ati Radeon 9800 3D rendering losmescaleros Fedora 21 08-27-2004 06:18 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

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