LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 05-03-2007, 05:44 PM   #1
TheNoob2007
LQ Newbie
 
Registered: May 2007
Posts: 5

Rep: Reputation: 0
ATI livna drivers - help troubleshoot, please.


I'm trying to get compiz to work but am having problems with fglrx...

When I type
Code:
glxinfo | grep direct
I get the following

Code:
Xlib:  extension "XFree86-DRI" missing on display ":0.0".
direct rendering: No
OpenGL renderer string: Mesa GLX Indirect

Here's my kernel

Code:
kernel-2.6.20-1.2948.fc6.i686
kernel-devel-2.6.20-1.2948.fc6.i686
kernel-headers-2.6.18-1.2798.fc6.i386

And the results from
Code:
fglrxinfo
Code:
Xlib:  extension "XFree86-DRI" missing on display ":0.0".
display: :0.0  screen: 0
OpenGL vendor string: Mesa project: www.mesa3d.org
OpenGL renderer string: Mesa GLX Indirect
OpenGL version string: 1.2 (1.5 Mesa 6.5.1)
And here's my xorg.conf

Code:
# Xorg configuration created by livna-config-display

Section "ServerLayout"
	Identifier     "single head configuration"
	Screen      0  "Screen0" 0 0
	InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
	ModulePath   "/usr/lib/xorg/modules"
EndSection

Section "InputDevice"
	Identifier  "Keyboard0"
	Driver      "kbd"
	Option	    "XkbModel" "pc105"
	Option	    "XkbLayout" "us"
EndSection

Section "Device"
	Identifier  "Videocard0"
	Driver      "fglrx"
	Option	    "VideoOverlay" "on"
        Option        "UseFastTLS" "0"
        Option        "BlockSignalsOnLock" "on"
        Option        "ForceGenericCPU" "off"
        Option        "KernelModuleParm" "locked-userpages=0"

EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Videocard0"
	DefaultDepth     24
	SubSection "Display"
		Viewport   0 0
		Depth     24
		Modes    "1152x864" "1024x768" "800x600" "640x480"
	EndSubSection
EndSection

Section "Module"
    Load   "dri"
    Load   "extmod"
    Load   "glx"
EndSection

Section "DRI"
        Group        0
        Mode         0666
EndSection

Section "Extensions"
     Option "Composite" "False"
EndSection

Section "ServerFlags"
        Option      "AIGLX" "off"
EndSection
I had it working a while ago, spinning cube, wobbly windows on fire etc... But I have no idea how I managed to "fluke" it.

Thanks.
 
Old 05-03-2007, 06:33 PM   #2
Lenard
Senior Member
 
Registered: Dec 2005
Location: Indiana
Distribution: RHEL/CentOS/SL 5 i386 and x86_64 pata for IDE in use
Posts: 4,790

Rep: Reputation: 58
Personally, I prefer the ati-x11-drv from freshrpms along the dkms package from FC6 extras but that is besides the point*.

Your /etc/X11/xorg.conf file looks similar to mine (included for comparison), please check and see if you have the imlib rpm packages installed; rpm -qa 'imlib*'

Expected output for example;
$ rpm -qa 'imlib*'
imlib2-1.3.0-3.fc6
imlib-1.9.15-2.fc6

* I like the idea that when a new kernel is installed or upgraded I do not need to download and install new packages from linva, the ati-x11-drv automatically gets rebuilt for the new kernel at boot-time.

And before I forget my xorg.conf file;
Code:
# Xorg configuration created by system-config-display

Section "ServerLayout"
	Identifier     "single head configuration"
	Screen      0  "Screen0" 0 0
	InputDevice    "Keyboard0" "CoreKeyboard"
	InputDevice    "Synaptics" "CorePointer"
EndSection

Section "InputDevice"
	Identifier  "Keyboard0"
	Driver      "kbd"
	Option	    "XkbModel" "pc105"
	Option	    "XkbLayout" "us"
EndSection

Section "InputDevice"
	Identifier  "Synaptics"
	Driver      "synaptics"
	Option	    "Device" "/dev/input/mice"
	Option	    "Protocol" "auto-dev"
	Option	    "Emulate3Buttons" "yes"
	Option	    "TouchpadOff" "2"
EndSection

Section "Monitor"
	Identifier   "Monitor0"
	ModelName    "LCD Panel 1280x800"
 ### Comment all HorizSync and VertSync values to use DDC:
	HorizSync    31.5 - 90.0
	VertRefresh  59.9 - 60.1
	Option	    "dpms"
EndSection

Section "Device"
	Identifier  "Videocard0"
	Driver      "fglrx"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Videocard0"
	Monitor    "Monitor0"
	DefaultDepth     24
	SubSection "Display"
		Viewport   0 0
		Depth     24
		Modes    "1280x800" "1152x864" "1024x768" "800x600" "640x480"
	EndSubSection
EndSection

Section "Module"
    Load   "dri"
    Load   "extmod"
    Load   "glx"
EndSection

Section "DRI"
        Group        0
        Mode         0666
EndSection

Section "Extensions"
     Option "Composite" "False"
EndSection

Section "ServerFlags"
        Option      "AIGLX" "off"
EndSection
 
Old 05-03-2007, 07:58 PM   #3
TheNoob2007
LQ Newbie
 
Registered: May 2007
Posts: 5

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by Lenard
Personally, I prefer the ati-x11-drv from freshrpms along the dkms package from FC6 extras but that is besides the point*.

Your /etc/X11/xorg.conf file looks similar to mine (included for comparison), please check and see if you have the imlib rpm packages installed; rpm -qa 'imlib*'

Expected output for example;
$ rpm -qa 'imlib*'
imlib2-1.3.0-3.fc6
imlib-1.9.15-2.fc6

* I like the idea that when a new kernel is installed or upgraded I do not need to download and install new packages from linva, the ati-x11-drv automatically gets rebuilt for the new kernel at boot-time.

And before I forget my xorg.conf file;
Code:
# Xorg configuration created by system-config-display

Section "ServerLayout"
	Identifier     "single head configuration"
	Screen      0  "Screen0" 0 0
	InputDevice    "Keyboard0" "CoreKeyboard"
	InputDevice    "Synaptics" "CorePointer"
EndSection

Section "InputDevice"
	Identifier  "Keyboard0"
	Driver      "kbd"
	Option	    "XkbModel" "pc105"
	Option	    "XkbLayout" "us"
EndSection

Section "InputDevice"
	Identifier  "Synaptics"
	Driver      "synaptics"
	Option	    "Device" "/dev/input/mice"
	Option	    "Protocol" "auto-dev"
	Option	    "Emulate3Buttons" "yes"
	Option	    "TouchpadOff" "2"
EndSection

Section "Monitor"
	Identifier   "Monitor0"
	ModelName    "LCD Panel 1280x800"
 ### Comment all HorizSync and VertSync values to use DDC:
	HorizSync    31.5 - 90.0
	VertRefresh  59.9 - 60.1
	Option	    "dpms"
EndSection

Section "Device"
	Identifier  "Videocard0"
	Driver      "fglrx"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Videocard0"
	Monitor    "Monitor0"
	DefaultDepth     24
	SubSection "Display"
		Viewport   0 0
		Depth     24
		Modes    "1280x800" "1152x864" "1024x768" "800x600" "640x480"
	EndSubSection
EndSection

Section "Module"
    Load   "dri"
    Load   "extmod"
    Load   "glx"
EndSection

Section "DRI"
        Group        0
        Mode         0666
EndSection

Section "Extensions"
     Option "Composite" "False"
EndSection

Section "ServerFlags"
        Option      "AIGLX" "off"
EndSection

I know I don't have the imlib rpm packages installed.

I'm VERY new to Linux/Fedora so I'm not too sure where to get them. I'll search around to try and find out, but I'll probably be back here to ask where to install them from.
 
Old 05-03-2007, 08:04 PM   #4
TheNoob2007
LQ Newbie
 
Registered: May 2007
Posts: 5

Original Poster
Rep: Reputation: 0
Reference for others:


http://freshrpms.net/
 
Old 05-03-2007, 08:31 PM   #5
TheNoob2007
LQ Newbie
 
Registered: May 2007
Posts: 5

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by Lenard
Personally, I prefer the ati-x11-drv from freshrpms along the dkms package from FC6 extras but that is besides the point*.

Your /etc/X11/xorg.conf file looks similar to mine (included for comparison), please check and see if you have the imlib rpm packages installed; rpm -qa 'imlib*'

Expected output for example;
$ rpm -qa 'imlib*'
imlib2-1.3.0-3.fc6
imlib-1.9.15-2.fc6

* I like the idea that when a new kernel is installed or upgraded I do not need to download and install new packages from linva, the ati-x11-drv automatically gets rebuilt for the new kernel at boot-time.

And before I forget my xorg.conf file;
Code:
# Xorg configuration created by system-config-display

Section "ServerLayout"
	Identifier     "single head configuration"
	Screen      0  "Screen0" 0 0
	InputDevice    "Keyboard0" "CoreKeyboard"
	InputDevice    "Synaptics" "CorePointer"
EndSection

Section "InputDevice"
	Identifier  "Keyboard0"
	Driver      "kbd"
	Option	    "XkbModel" "pc105"
	Option	    "XkbLayout" "us"
EndSection

Section "InputDevice"
	Identifier  "Synaptics"
	Driver      "synaptics"
	Option	    "Device" "/dev/input/mice"
	Option	    "Protocol" "auto-dev"
	Option	    "Emulate3Buttons" "yes"
	Option	    "TouchpadOff" "2"
EndSection

Section "Monitor"
	Identifier   "Monitor0"
	ModelName    "LCD Panel 1280x800"
 ### Comment all HorizSync and VertSync values to use DDC:
	HorizSync    31.5 - 90.0
	VertRefresh  59.9 - 60.1
	Option	    "dpms"
EndSection

Section "Device"
	Identifier  "Videocard0"
	Driver      "fglrx"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Videocard0"
	Monitor    "Monitor0"
	DefaultDepth     24
	SubSection "Display"
		Viewport   0 0
		Depth     24
		Modes    "1280x800" "1152x864" "1024x768" "800x600" "640x480"
	EndSubSection
EndSection

Section "Module"
    Load   "dri"
    Load   "extmod"
    Load   "glx"
EndSection

Section "DRI"
        Group        0
        Mode         0666
EndSection

Section "Extensions"
     Option "Composite" "False"
EndSection

Section "ServerFlags"
        Option      "AIGLX" "off"
EndSection

I downloaded and installed the ati-x11-drv-8.36.5-1.fc6.i386.rpm, and devel...

Is there anything else I have to do? Are the imlib rpm packages installed as dependencies?
 
Old 05-04-2007, 05:39 AM   #6
Lenard
Senior Member
 
Registered: Dec 2005
Location: Indiana
Distribution: RHEL/CentOS/SL 5 i386 and x86_64 pata for IDE in use
Posts: 4,790

Rep: Reputation: 58
Install the freshrpms-release rpm package as root type;
Code:
rpm -ivh http://ftp.freshrpms.net/pub/freshrpms/fedora/linux/6/freshrpms-release/freshrpms-release-1.1-1.fc.noarch.rpm
When done do: yum install imlib imlib2 ati-x11-drv

You might want to uninstall the livna packages first, which can be done from the console or xterm session using yum or rpm;

Example: yum uninstall kmod-nvidia
Example: rpm -e kmod-nvidia* --allmatches
 
  


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
Problem installing livna ATI driver on FC6 PreacherBill Fedora 10 05-07-2007 04:43 PM
FC6 problem with installing ATI drivers from livna. squall1986 Fedora 2 01-13-2007 08:51 AM
Tomshardware tests Linux ATI and nVdiai drivers. Results not what I expected for ATI. RHLinuxGUY Linux - News 3 10-30-2006 09:59 PM
ATI Radeon on FC5 Livna valQ Linux - Newbie 10 05-09-2006 01:33 AM
livna repo appears to be broken? Is it me or livna? jamesjoy Linux - Newbie 2 11-06-2005 06:09 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

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