Fedora This forum is for the discussion of the Fedora Project. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
12-15-2006, 02:05 PM
|
#1
|
Member
Registered: Dec 2005
Location: Portugal
Distribution: Slackware64 13.0, Slackware64 13.1
Posts: 538
Rep:
|
Fedora Core 6 and ATI hardware acceleration
Hi,
I've installed Fedorra core 6 today, and have everything working, except for video acceleration.
I downloaded kmod-fglrx and its dependencies for the stock kernel (2.6.18-1.2798.fc6), edited my xorg file and changed "radeon" to fglrx:
Code:
# Xorg configuration created by pyxf86config
Section "ServerLayout"
Identifier "Default Layout"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "pt"
EndSection
Section "Device"
Identifier "Videocard0"
Driver "radeon"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1280x1024" "1024x768" "800x600"
EndSubSection
EndSection
the module is in /lib/modules/2.6.18-1.2798.fc6/extra/fglrx/fglrx.ko
Anyway, after i reboot, the kernel boots, and when it tried to start the part when the loading bar appears, the screen just goes blank.
And its not just my monitor thats blank, the monitor power light starts blinking, so its not even receving a video signal?
The starnge thing is that it is probably working properly, because i can see the hdd led blinking and my router connection light turning on, so i'm just not getting any video.
Any help is much appreciated
|
|
|
12-15-2006, 02:22 PM
|
#2
|
LQ Guru
Registered: Aug 2003
Distribution: CentOS, OS X
Posts: 5,131
Rep:
|
Yeah you guessed right, everything else is probably working but the video driver; you can/should try and alter the configuration values and see if it helps, perhaps use "nosplash" boot option --> disable the graphical bootup screen, to see what goes wrong and try to fix that then. Or it could be that the driver just doesn't work for your card or something..ATI's drivers aren't the easiest to get working properly
|
|
|
12-15-2006, 03:10 PM
|
#3
|
Member
Registered: Dec 2005
Location: Portugal
Distribution: Slackware64 13.0, Slackware64 13.1
Posts: 538
Original Poster
Rep:
|
Thanks, i'll give that a try
Quote:
ATI's drivers aren't the easiest to get working properly
|
yeah...I just feel like burning my ati card and then pissing on it.
|
|
|
12-15-2006, 03:15 PM
|
#4
|
Member
Registered: Dec 2005
Location: Portugal
Distribution: Slackware64 13.0, Slackware64 13.1
Posts: 538
Original Poster
Rep:
|
Another thing, after having installed the fglrx package, glxgears no longer works:
Code:
$ glxgears
glxgears: error while loading shared libraries: /usr/lib/libGL.so.1: cannot restore segment prot after reloc: Permission denied
i'm updating the mesa libGL libraries...maybe that has something to do with it....
|
|
|
12-15-2006, 04:34 PM
|
#5
|
LQ Newbie
Registered: May 2006
Location: Belgium
Distribution: SuSe on Desktop, SlackWare and CentOS on Servers
Posts: 3
Rep:
|
Is xorg version > 7.1?
In this case, there is no ATI support (yet) ...
Pascal
|
|
|
12-15-2006, 05:38 PM
|
#6
|
Member
Registered: Dec 2005
Location: Portugal
Distribution: Slackware64 13.0, Slackware64 13.1
Posts: 538
Original Poster
Rep:
|
Quote:
Originally Posted by zefox
Is xorg version > 7.1?
In this case, there is no ATI support (yet) ...
Pascal
|
not sure, how do i check?
|
|
|
12-15-2006, 06:36 PM
|
#7
|
Member
Registered: Dec 2005
Location: Portugal
Distribution: Slackware64 13.0, Slackware64 13.1
Posts: 538
Original Poster
Rep:
|
Ok, an update:
I rebooted my computer again with the fglrx module in xorg.conf; waited for the hard-drive to go silent, then did a cold reset.
I dug out my GParted LiveCD and rescued the /var/log/Xorg.0.log
With some help provided by another forum to filter the file search, it looks like a BusID problem:
doing cat Xorg.0.log | grep fglrx | grep EE i got this:
Code:
$ cat Xorg.0.log | grep fglrx | grep EE
(EE) fglrx(0): Chipset 0x5960 is not recognized
(EE) fglrx(0): PreInitConfig failed
(EE) fglrx(0): PreInit failed
and cat Xorg.0.log | grep fglrx | grep WW returns this:
Code:
$ cat Xorg.0.log | grep fglrx | grep WW
(WW) fglrx: No matching Device section for instance (BusID PCI:1:0:1) found
Now, my lspci indicated that my card has two bus id's, one for each head (or at least I think its that way, but I may just be pulling information out of my ass):
Code:
$ /sbin/lspci | grep ATI
01:00.0 VGA compatible controller: ATI Technologies Inc RV280 [Radeon 9200 PRO] (rev 01)
01:00.1 Display controller: ATI Technologies Inc RV280 [Radeon 9200 PRO] (Secondary) (rev 01)
So it looks like X is trying to start on the secondary head.
If this is in fact the problem, how do I change xorg.conf to force X to use the primary vga output bus id?
Last edited by easuter; 12-15-2006 at 06:37 PM.
|
|
|
12-20-2006, 02:37 AM
|
#8
|
Member
Registered: Dec 2005
Location: Portugal
Distribution: Slackware64 13.0, Slackware64 13.1
Posts: 538
Original Poster
Rep:
|
I did finaly get it working after a lot of effort, so I'm just posting back with the sollution for anyone else who might need help:
http://www.linuxforums.org/forum/red...ivers-fc6.html
|
|
|
All times are GMT -5. The time now is 07:30 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|