Code: Select all
/opt/ati/bin/fglrxinfoCode: Select all
Error: unable to open display :0Specs:
ATI Radeon XT1800 512MB
I set the driver for the card to "fglrx" and when I try startx it says (EE) No drivers found
Help!
Thanks, EdRiZzLe.
Code: Select all
/opt/ati/bin/fglrxinfoCode: Select all
Error: unable to open display :0More info needed.... Did you install the ati closed source drivers?EdRiZzLe wrote:More wonderful problems...When I run that it saysCode: Select all
/opt/ati/bin/fglrxinfoI've configured xorg.conf about 10 different times now.Code: Select all
Error: unable to open display :0
Specs:
ATI Radeon XT1800 512MB
I set the driver for the card to "fglrx" and when I try startx it says (EE) No drivers found
Help!
Thanks, EdRiZzLe.
Code: Select all
emerge -p ati-driversCode: Select all
modprobe fglrxCode: Select all
echo "NAME OF MODULE" >> /etc/modules.autoload.d/kernel-2.6Code: Select all
Section "Monitor"
Identifier "aticonfig-Monitor[0]"
Option "VendorName" "ATI Proprietary Driver"
Option "ModelName" "Generic Autodetecting Monitor"
Option "DPMS" "true"
EndSection
Section "Device"
# Insert Clocks lines here if appropriate
Identifier "Radeon XT1800 512MB"
Driver "radeon"
Card "** ATI Radeon (generic) [radeon]"
VideoRam 512000
EndSection
Section "Screen"
Identifier "Screen 1"
Device "Radeon XT1800 512MB"
Monitor "Samsung SyncMaster 713v"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 8
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSectionCode: Select all
(EE) No drivers installedWait... not in that order right? adding the line in your make.conf should proceed rebuilding Xserver (it basically causes ati-drivers to be a dependency of X).EdRiZzLe wrote:Do you see anything I should change? I emerged -1 xorg-server and added the fglrx module to startup. Also added VIDEO_CARDS="vesa ati fglrx" to the make.conf. Still getting the same errorAnd when I run /opt/ati/bin/fglrxinfo it says unable to open display.Code: Select all
(EE) No drivers installed
Any suggestions?
Code: Select all
X -verbose 255Code: Select all
X -verbose 255Code: Select all
(EE) No drivers available
Fatal server error:
No screens foundCode: Select all
[ebuild R] x11-drivers/ati-drivers-8.32.5EdRiZzLe wrote:Uhh you don't have a valid monitor in your screen section.Code: Select all
Section "Monitor" Identifier "aticonfig-Monitor[0]" Option "VendorName" "ATI Proprietary Driver" Option "ModelName" "Generic Autodetecting Monitor" Option "DPMS" "true" EndSection Section "Device" # Insert Clocks lines here if appropriate Identifier "Radeon XT1800 512MB" Driver "radeon" Card "** ATI Radeon (generic) [radeon]" VideoRam 512000 EndSection Section "Screen" Identifier "Screen 1" Device "Radeon XT1800 512MB" Monitor "Samsung SyncMaster 713v" DefaultDepth 24 SubSection "Display" Viewport 0 0 Depth 8 Modes "1280x1024" "1024x768" "800x600" "640x480" EndSubSection
You have: Monitor "Samsung SyncMaster 713v"
But your monitor is identified by: Identifier "aticonfig-Monitor[0]"
I'd do:I'm not sure why you had screen 1 (dual monitors?) but it be prettier if it was screen0 (if you have a single mon.)Code: Select all
Section "Monitor" Identifier "Monitor0" Option "VendorName" "ATI Proprietary Driver" Option "ModelName" "Generic Autodetecting Monitor" Option "DPMS" "true" EndSection Section "Device" # Insert Clocks lines here if appropriate Identifier "Radeon XT1800 512MB" Driver "radeon" Card "** ATI Radeon (generic) [radeon]" VideoRam 512000 EndSection Section "Screen" Identifier "Screen0" Device "Radeon XT1800 512MB" Monitor "Monitor0" DefaultDepth 24 SubSection "Display" Viewport 0 0 Depth 8 Modes "1280x1024" "1024x768" "800x600" "640x480" EndSubSection
If it gets too hairy you can always do:And then re-edit it to fix anything!Code: Select all
cp /etc/X11/xorg.conf /etc/X11/xorg.conf.bak && X -configure && cp /root/xorg.conf.new /etc/X11/xorg.conf

Code: Select all
Section "Device"
# Insert Clocks lines here if appropriate
Identifier "Radeon XT1800 512MB"
Driver "radeon"
Card "** ATI Radeon (generic) [radeon]"
VideoRam 512000
EndSection
Code: Select all
Section "Device"
# Insert Clocks lines here if appropriate
Identifier "Radeon XT1800 512MB"
Driver "fglrx"
Card "** ATI Radeon (generic) [radeon]"
VideoRam 512000
EndSection
Oh and thatd2_racing wrote:Your /etc/X11/xorg.conf have driver radeon, sauf your X.ORG server try to load the open source driver....
Change radeon to flgx
Code: Select all
Section "Device" # Insert Clocks lines here if appropriate Identifier "Radeon XT1800 512MB" Driver "radeon" Card "** ATI Radeon (generic) [radeon]" VideoRam 512000 EndSectionCode: Select all
Section "Device" # Insert Clocks lines here if appropriate Identifier "Radeon XT1800 512MB" Driver "fglx" Card "** ATI Radeon (generic) [radeon]" VideoRam 512000 EndSection

Code: Select all
Xlib: extension "GLX" missing on display ":0.0".
Xlib: extension "GLX" missing on display ":0.0".
Error: couldn't find RGB GLX visual!when I enter /opt/ati/bin/fglrxinfo.Xlib: extension "GLX" missing on display ":0.0".
Xlib: extension "GLX" missing on display ":0.0".
Error: couldn't find RGB GLX visual!

Code: Select all
Section "Module"
# This loads the DBE extension module.
# This loads the miscellaneous extensions module, and disables
# initialisation of the XFree86-DGA extension within that module.
# This loads the font modules
# Load "type1"
# Load "speedo"
# This loads the GLX module
# Load "glx"
# This loads the DRI module
# Load "dri"
Load "dbe" # Double buffer extension
SubSection "extmod"
Option "omit xfree86-dga" # don't initialise the DGA extension
EndSubSection
Load "freetype"
# Load "xtt"
Load "dri"
Load "glx"
EndSectionCode: Select all
Error: unable to open display :0