PDA

View Full Version : ATI e DRI...


aik
07-09-2005, 21:45
So che ci sono 2000 post simili a questo, li ho letti quasi tutti ma non sono riuscito a trovare una soluzione... ho una ati 9250, debian con kernel 2.6.8 e xfree. Sto usando i driver ati presi dal sito soltanto che non riesco a far funzionare il DRI ...aiutatemi , sto impazzendo! vi dò tutte le informazioni che mi vengono in mente !


[simone:catorcio][~]$glxinfo | grep rendering
direct rendering: No

[simone:catorcio][~]$lspci | grep ATI
0000:01:00.0 VGA compatible controller: ATI Technologies Inc RV250 5c61 [Radeon Mobility 9200 M9+] (rev 01)

[simone:catorcio][~]$lsmod | grep agp
amd64_agp 10696 1
agpgart 31784 1 amd64_agp

[simone:catorcio][~]$fglrxinfo
display: :0.0 screen: 0
OpenGL vendor string: Mesa project: www.mesa3d.org
OpenGL renderer string: Mesa GLX Indirect
OpenGL version string: 1.3 Mesa 4.0.4

/etc/modules:

# /etc/modules: kernel modules to load at boot time.
#
# This file should contain the names of kernel modules that are
# to be loaded at boot time, one per line. Comments begin with
# a "#", and everything on the line after them are ignored.

ide-cd
ide-disk
ide-generic
psmouse
sbp2
sr_mod
agpgart
ati-agp
nvidia-agp
intel-mch-agp
fglrx




XF86config :

# **********************************************************************
# DRI Section
# **********************************************************************
Section "dri"
# Access to OpenGL ICD is allowed for all users:
Mode 0666
# Access to OpenGL ICD is restricted to a specific user group:
# Group 100 # users
# Mode 0660
EndSection

# **********************************************************************
# Module section -- this section is used to specify
# which dynamically loadable modules to load.
# **********************************************************************
#
Section "Module"

# This loads the DBE extension module.

Load "dbe" # Double buffer extension

# This loads the miscellaneous extensions module, and disables
# initialisation of the XFree86-DGA extension within that module.
SubSection "extmod"
# Option "omit xfree86-dga"
EndSubSection

# This loads the Type1 and FreeType font modules
Load "type1"
Load "freetype"

# This loads the GLX module

Load "glx" # libglx.a
Load "dri" # libdri.a

EndSection

# **********************************************************************
# Files section. This allows default font and rgb paths to be set
# **********************************************************************

Section "Files"

# The location of the RGB database. Note, this is the name of the
# file minus the extension (like ".txt" or ".db"). There is normally
# no need to change the default.

RgbPath "/usr/X11R6/lib/X11/rgb"

# Multiple FontPath entries are allowed (which are concatenated together),
# as well as specifying multiple comma-separated entries in one FontPath
# command (or a combination of both methods)
#
# If you don't have a floating point coprocessor and emacs, Mosaic or other
# programs take long to start up, try moving the Type1 and Speedo directory
# to the end of this list (or comment them out).
#

# FontPath "/usr/X11R6/lib/X11/fonts/local/"
FontPath "/usr/X11R6/lib/X11/fonts/misc/"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi/:unscaled"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi/:unscaled"
FontPath "/usr/X11R6/lib/X11/fonts/Type1/"
FontPath "/usr/X11R6/lib/X11/fonts/Speedo/"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi/"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi/"

# The module search path. The default path is shown here.

# ModulePath "/usr/X11R6/lib/modules"

EndSection

# **********************************************************************
# Server flags section.
# **********************************************************************

Section "ServerFlags"

# Uncomment this to cause a core dump at the spot where a signal is
# received. This may leave the console in an unusable state, but may
# provide a better stack trace in the core dump to aid in debugging

# Option "NoTrapSignals"

# Uncomment this to disable the <Crtl><Alt><BS> server abort sequence
# This allows clients to receive this key event.

# Option "DontZap"

# Uncomment this to disable the <Crtl><Alt><KP_+>/<KP_-> mode switching
# sequences. This allows clients to receive these key events.

# Option "Dont Zoom"

# Uncomment this to disable tuning with the xvidtune client. With
# it the client can still run and fetch card and monitor attributes,
# but it will not be allowed to change them. If it tries it will
# receive a protocol error.

# Option "DisableVidModeExtension"

# Uncomment this to enable the use of a non-local xvidtune client.

# Option "AllowNonLocalXvidtune"

# Uncomment this to disable dynamically modifying the input device
# (mouse and keyboard) settings.

# Option "DisableModInDev"

# Uncomment this to enable the use of a non-local client to
# change the keyboard or mouse settings (currently only xset).

# Option "AllowNonLocalModInDev"

EndSection

# **********************************************************************
# Input devices
# **********************************************************************

# **********************************************************************
# Core keyboard's InputDevice section
# **********************************************************************

Section "InputDevice"

Identifier "Keyboard1"
Driver "Keyboard"
# For most OSs the protocol can be omitted (it defaults to "Standard").
# When using XQUEUE (only for SVR3 and SVR4, but not Solaris),
# uncomment the following line.

# Option "Protocol" "Xqueue"

Option "AutoRepeat" "500 30"

# Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
# Option "Xleds" "1 2 3"

# Option "LeftAlt" "Meta"
# Option "RightAlt" "ModeShift"

# To customise the XKB settings to suit your keyboard, modify the
# lines below (which are the defaults). For example, for a non-U.S.
# keyboard, you will probably want to use:
# Option "XkbModel" "pc102"
# If you have a US Microsoft Natural keyboard, you can use:
# Option "XkbModel" "microsoft"
#
# Then to change the language, change the Layout setting.
# For example, a german layout can be obtained with:
# Option "XkbLayout" "de"
# or:
# Option "XkbLayout" "de"
# Option "XkbVariant" "nodeadkeys"
#
# If you'd like to switch the positions of your capslock and
# control keys, use:
# Option "XkbOptions" "ctrl:swapcaps"

# These are the default XKB settings for XFree86
# Option "XkbRules" "xfree86"
# Option "XkbModel" "pc101"
# Option "XkbLayout" "us"
# Option "XkbVariant" ""
# Option "XkbOptions" ""

# Option "XkbDisable"

Option "XkbRules" "xfree86"
Option "XkbModel" "pc104"
Option "XkbLayout" "it"

EndSection


# **********************************************************************
# Core Pointer's InputDevice section
# **********************************************************************

Section "InputDevice"

# Identifier and driver

Identifier "Mouse1"
Driver "mouse"
Option "Protocol" "ImPS/2"
Option "ZAxisMapping" "4 5"
Option "Device" "/dev/psaux"

# When using XQUEUE, comment out the above two lines, and uncomment
# the following line.

# Option "Protocol" "Xqueue"

# Baudrate and SampleRate are only for some Logitech mice. In
# almost every case these lines should be omitted.

# Option "BaudRate" "9600"
# Option "SampleRate" "150"

# Emulate3Buttons is an option for 2-button Microsoft mice
# Emulate3Timeout is the timeout in milliseconds (default is 50ms)

Option "Emulate3Buttons"
# Option "Emulate3Timeout" "50"

# ChordMiddle is an option for some 3-button Logitech mice

# Option "ChordMiddle"

EndSection


# **********************************************************************
# Other input device sections
# this is optional and is required only if you
# are using extended input devices. This is for example only. Refer
# to the XF86Config man page for a description of the options.
# **********************************************************************
#
# Section "InputDevice"
# Identifier "Mouse2"
# Driver "mouse"
# Option "Protocol" "MouseMan"
# Option "Device" "/dev/mouse2"
# EndSection
#
# Section "InputDevice"
# Identifier "spaceball"
# Driver "magellan"
# Option "Device" "/dev/cua0"
# EndSection
#
# Section "InputDevice"
# Identifier "spaceball2"
# Driver "spaceorb"
# Option "Device" "/dev/cua0"
# EndSection
#
# Section "InputDevice"
# Identifier "touchscreen0"
# Driver "microtouch"
# Option "Device" "/dev/ttyS0"
# Option "MinX" "1412"
# Option "MaxX" "15184"
# Option "MinY" "15372"
# Option "MaxY" "1230"
# Option "ScreenNumber" "0"
# Option "ReportingMode" "Scaled"
# Option "ButtonNumber" "1"
# Option "SendCoreEvents"
# EndSection
#
# Section "InputDevice"
# Identifier "touchscreen1"
# Driver "elo2300"
# Option "Device" "/dev/ttyS0"
# Option "MinX" "231"
# Option "MaxX" "3868"
# Option "MinY" "3858"
# Option "MaxY" "272"
# Option "ScreenNumber" "0"
# Option "ReportingMode" "Scaled"
# Option "ButtonThreshold" "17"
# Option "ButtonNumber" "1"
# Option "SendCoreEvents"
# EndSection

# **********************************************************************
# Monitor section
# **********************************************************************

# Any number of monitor sections may be present

Section "Monitor"
Identifier "Monitor0"
# === mode lines based on GTF ===
# VGA @ 100Hz
# Modeline "640x480@100" 43.163 640 680 744 848 480 481 484 509 +hsync +vsync
# SVGA @ 100Hz
# Modeline "800x600@100" 68.179 800 848 936 1072 600 601 604 636 +hsync +vsync
# XVGA @ 100Hz
# Modeline "1024x768@100" 113.309 1024 1096 1208 1392 768 769 772 814 +hsync +vsync
# 1152x864 @ 60Hz
# Modeline "1152x864@60" 81.642 1152 1216 1336 1520 864 865 868 895 +hsync +vsync
# 1152x864 @ 85Hz
# Modeline "1152x864@85" 119.651 1152 1224 1352 1552 864 865 868 907 +hsync +vsync
# 1152x864 @ 100Hz
# Modeline "1152x864@100" 143.472 1152 1232 1360 1568 864 865 868 915 +hsync +vsync
# 1280x960 @ 75Hz
# Modeline "1280x960@75" 129.859 1280 1368 1504 1728 960 961 964 1002 +hsync +vsync
# 1280x960 @ 100Hz
# Modeline "1280x960@100" 178.992 1280 1376 1520 1760 960 961 964 1017 +hsync +vsync
# SXGA @ 100Hz
# Modeline "1280x1024@100" 190.960 1280 1376 1520 1760 1024 1025 1028 1085 +hsync +vsync
# SPEA GDM-1950 (60Hz,64kHz,110MHz,-,-): 1280x1024 @ V-freq: 60.00 Hz, H-freq: 63.73 KHz
# Modeline "GDM-1950" 109.62 1280 1336 1472 1720 1024 1024 1026 1062 -hsync -vsync
# 1600x1000 @ 60Hz
# Modeline "1600x1000" 133.142 1600 1704 1872 2144 1000 1001 1004 1035 +hsync +vsync
# 1600x1000 @ 75Hz
# Modeline "1600x1000" 169.128 1600 1704 1880 2160 1000 1001 1004 1044 +hsync +vsync
# 1600x1000 @ 85Hz
# Modeline "1600x1000" 194.202 1600 1712 1888 2176 1000 1001 1004 1050 +hsync +vsync
# 1600x1000 @ 100Hz
# Modeline "1600x1000" 232.133 1600 1720 1896 2192 1000 1001 1004 1059 +hsync +vsync
# 1600x1024 @ 60Hz
# Modeline "1600x1024" 136.385 1600 1704 1872 2144 1024 1027 1030 1060 +hsync +vsync
# 1600x1024 @ 75Hz
# Modeline "1600x1024" 174.416 1600 1712 1888 2176 1024 1025 1028 1069 +hsync +vsync
# 1600x1024 @ 76Hz
# Modeline "1600x1024" 170.450 1600 1632 1792 2096 1024 1027 1030 1070 +hsync +vsync
# 1600x1024 @ 85Hz
# Modeline "1600x1024" 198.832 1600 1712 1888 2176 1024 1027 1030 1075 +hsync +vsync
# 1920x1080 @ 60Hz
# Modeline "1920x1080" 172.798 1920 2040 2248 2576 1080 1081 1084 1118 -hsync -vsync
# 1920x1080 @ 75Hz
# Modeline "1920x1080" 211.436 1920 2056 2264 2608 1080 1081 1084 1126 +hsync +vsync
# 1920x1200 @ 60Hz
# Modeline "1920x1200" 193.156 1920 2048 2256 2592 1200 1201 1203 1242 +hsync +vsync
# 1920x1200 @ 75Hz
# Modeline "1920x1200" 246.590 1920 2064 2272 2624 1200 1201 1203 1253 +hsync +vsync
# 2048x1536 @ 60
# Modeline "2048x1536" 266.952 2048 2200 2424 2800 1536 1537 1540 1589 +hsync +vsync
# 2048x1536 @ 60
# Modeline "2048x1536" 266.952 2048 2200 2424 2800 1536 1537 1540 1589 +hsync +vsync
# 1400x1050 @ 60Hz M9 Laptop mode
# ModeLine "1400x1050" 122.000 1400 1488 1640 1880 1050 1052 1064 1082 +hsync +vsync
# 1920x2400 @ 25Hz for IBM T221, VS VP2290 and compatible display devices
# Modeline "1920x2400@25" 124.620 1920 1928 1980 2048 2400 2401 2403 2434 +hsync +vsync
# 1920x2400 @ 30Hz for IBM T221, VS VP2290 and compatible display devices
# Modeline "1920x2400@30" 149.250 1920 1928 1982 2044 2400 2402 2404 2434 +hsync +vsync

EndSection


# **********************************************************************
# Graphics device section
# **********************************************************************

# Any number of graphics device sections may be present

# Standard VGA Device:

#Section "Device"
# Identifier "Standard VGA"
# VendorName "Unknown"
# BoardName "Unknown"

# The chipset line is optional in most cases. It can be used to override
# the driver's chipset detection, and should not normally be specified.

# Chipset "generic"

# The Driver line must be present. When using run-time loadable driver
# modules, this line instructs the server to load the specified driver
# module. Even when not using loadable driver modules, this line
# indicates which driver should interpret the information in this section.

# Driver "vga"
# The BusID line is used to specify which of possibly multiple devices
# this section is intended for. When this line isn't present, a device
# section can only match up with the primary video device. For PCI
# devices a line like the following could be used. This line should not
# normally be included unless there is more than one video device
# installed.

# BusID "PCI:0:10:0"

# VideoRam 256

# Clocks 25.2 28.3

#EndSection

# === ATI device section ===

Section "Device"
Identifier "ATI Graphics Adapter"
Driver "fglrx"
# ### generic DRI settings ###
# === disable PnP Monitor ===
#Option "NoDDC"
# === disable/enable XAA/DRI ===
Option "no_accel" "no"
Option "no_dri" "no"
# === misc DRI settings ===
Option "mtrr" "off" # disable DRI mtrr mapper, driver has its own code for mtrr
# ### FireGL DDX driver module specific settings ###
# === Screen Management ===
Option "DesktopSetup" "Single"
Option "ScreenOverlap" "0"
Option "GammaCorrectionI" "0x06419064"
Option "GammaCorrectionII" "0x06419064"
# === OpenGL specific profiles/settings ===
Option "Capabilities" "0x00000000"
Option "CapabilitiesEx" "0x00000000"
# === Video Overlay for the Xv extension ===
Option "VideoOverlay" "on"
# === OpenGL Overlay ===
# Note: When OpenGL Overlay is enabled, Video Overlay
# will be disabled automatically
Option "OpenGLOverlay" "on"
# === Center Mode (Laptops only) ===
Option "CenterMode" "off"
# === Pseudo Color Visuals (8-bit visuals) ===
Option "PseudoColorVisuals" "off"
# === QBS Management ===
Option "Stereo" "off"
Option "StereoSyncEnable" "1"
# === FSAA Management ===
Option "FSAAEnable" "no"
Option "FSAAScale" "1"
Option "FSAADisableGamma" "no"
Option "FSAACustomizeMSPos" "no"
Option "FSAAMSPosX0" "0.000000"
Option "FSAAMSPosY0" "0.000000"
Option "FSAAMSPosX1" "0.000000"
Option "FSAAMSPosY1" "0.000000"
Option "FSAAMSPosX2" "0.000000"
Option "FSAAMSPosY2" "0.000000"
Option "FSAAMSPosX3" "0.000000"
Option "FSAAMSPosY3" "0.000000"
Option "FSAAMSPosX4" "0.000000"
Option "FSAAMSPosY4" "0.000000"
Option "FSAAMSPosX5" "0.000000"
Option "FSAAMSPosY5" "0.000000"
# === Misc Options ===
Option "UseFastTLS" "0"
Option "BlockSignalsOnLock" "on"
Option "UseInternalAGPGART" "on"
Option "ForceGenericCPU" "on"
BusID "PCI:1:0:0" # vendor=1002, device=5c61
Screen 0
EndSection

# **********************************************************************
# Screen sections
# **********************************************************************

# Any number of screen sections may be present. Each describes
# the configuration of a single screen. A single specific screen section
# may be specified from the X server command line with the "-screen"
# option.
Section "Screen"
Identifier "Screen0"
Device "ATI Graphics Adapter"
Monitor "Monitor0"
DefaultDepth 24
#Option "backingstore"

Subsection "Display"
Depth 24
Modes "1280x1024" "1024x768" "800x600" "640x480"
ViewPort 0 0 # initial origin if mode is smaller than desktop
# Virtual 1280 1024
EndSubsection
EndSection

# **********************************************************************
# ServerLayout sections.
# **********************************************************************

# Any number of ServerLayout sections may be present. Each describes
# the way multiple screens are organised. A specific ServerLayout
# section may be specified from the X server command line with the
# "-layout" option. In the absence of this, the first section is used.
# When now ServerLayout section is present, the first Screen section
# is used alone.

Section "ServerLayout"

# The Identifier line must be present
Identifier "Server Layout"

# Each Screen line specifies a Screen section name, and optionally
# the relative position of other screens. The four names after
# primary screen name are the screens to the top, bottom, left and right
# of the primary screen.

Screen "Screen0"

# Each InputDevice line specifies an InputDevice section name and
# optionally some options to specify the way the device is to be
# used. Those options include "CorePointer", "CoreKeyboard" and
# "SendCoreEvents".

InputDevice "Mouse1" "CorePointer"
InputDevice "Keyboard1" "CoreKeyboard"

EndSection

### EOF ###


il log di xfree dice che non è stato possibile caricare il dri ma non dice il perchè

(WW) fglrx(0): ***********************************************
(WW) fglrx(0): * DRI initialization failed! *
(WW) fglrx(0): * (maybe driver kernel module missing or bad) *
(WW) fglrx(0): * 2D acceleraton available (MMIO) *
(WW) fglrx(0): * no 3D acceleration available *
(WW) fglrx(0): ********************************************* *


Lo posto tutto:

XFree86 Version 4.3.0.1 (Debian 4.3.0.dfsg.1-14 20050601051219 [email protected])
Release Date: 15 August 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.4.29-pre2 i686 [ELF]
Build Date: 01 June 2005

This version of XFree86 has been extensively modified by the Debian
Project, and is not supported by the XFree86 Project, Inc., in any
way. Bugs should be reported to the Debian Bug Tracking System; see
<URL: http://www.debian.org/Bugs/Reporting >.

We strongly encourage the use of the "reportbug" package and command
to ensure that bug reports contain as much useful information as
possible.

Before filing a bug report, you may want to consult the Debian X FAQ:
XHTML version: file:///usr/share/doc/xfree86-common/FAQ.xhtml
plain text version: file:///usr/share/doc/xfree86-common/FAQ.gz

Module Loader present
OS Kernel: Linux version 2.6.8-2-386 ([email protected]) (gcc version 3.3.5 (Debian 1:3.3.5-12)) #1 Thu May 19 17:40:50 JST 2005
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/XFree86.0.log", Time: Wed Sep 7 21:07:10 2005
(==) Using config file: "/etc/X11/XF86Config-4"
(==) ServerLayout "Server Layout"
(**) |-->Screen "Screen0" (0)
(**) | |-->Monitor "Monitor0"
(**) | |-->Device "ATI Graphics Adapter"
(**) |-->Input Device "Mouse1"
(**) |-->Input Device "Keyboard1"
(**) Option "AutoRepeat" "500 30"
(**) Option "XkbRules" "xfree86"
(**) XKB: rules: "xfree86"
(**) Option "XkbModel" "pc104"
(**) XKB: model: "pc104"
(**) Option "XkbLayout" "it"
(**) XKB: layout: "it"
(==) Keyboard: CustomKeycode disabled
(**) FontPath set to "/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/75dpi/:unscaled,/usr/X11R6/lib/X11/fonts/100dpi/:unscaled,/usr/X11R6/lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/Speedo/,/usr/X11R6/lib/X11/fonts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/"
(**) RgbPath set to "/usr/X11R6/lib/X11/rgb"
(==) ModulePath set to "/usr/X11R6/lib/modules"
(++) using VT number 7

(WW) Open APM failed (/dev/apm_bios) (No such file or directory)
(II) Module ABI versions:
XFree86 ANSI C Emulation: 0.2
XFree86 Video Driver: 0.6
XFree86 XInput driver : 0.4
XFree86 Server Extension : 0.2
XFree86 Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor="The XFree86 Project"
compiled for 4.3.0.1, module version = 1.0.0
Module class: XFree86 Font Renderer
ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor="The XFree86 Project"
compiled for 4.3.0.1, module version = 1.0.0
ABI class: XFree86 Video Driver, version 0.6
(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x8000003c, mode1Res1 = 0x80000000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 1106,3188 card 1043,80a3 rev 01 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 1106,b188 card 0000,0000 rev 00 class 06,04,00 hdr 01
(II) PCI: 00:0a:0: chip 11ab,4320 card 1043,811a rev 13 class 02,00,00 hdr 00
(II) PCI: 00:0d:0: chip 1106,3044 card 1106,3044 rev 46 class 0c,00,10 hdr 00
(II) PCI: 00:0f:0: chip 1106,3149 card 1043,80ed rev 80 class 01,04,00 hdr 80
(II) PCI: 00:0f:1: chip 1106,0571 card 1043,80ed rev 06 class 01,01,8a hdr 00
(II) PCI: 00:10:0: chip 1106,3038 card 1043,80ed rev 81 class 0c,03,00 hdr 80
(II) PCI: 00:10:1: chip 1106,3038 card 1043,80ed rev 81 class 0c,03,00 hdr 80
(II) PCI: 00:10:2: chip 1106,3038 card 1043,80ed rev 81 class 0c,03,00 hdr 80
(II) PCI: 00:10:3: chip 1106,3038 card 1043,80ed rev 81 class 0c,03,00 hdr 80
(II) PCI: 00:10:4: chip 1106,3104 card 1043,80ed rev 86 class 0c,03,20 hdr 80
(II) PCI: 00:11:0: chip 1106,3227 card 1043,80ed rev 00 class 06,01,00 hdr 80
(II) PCI: 00:11:5: chip 1106,3059 card 1043,80b0 rev 60 class 04,01,00 hdr 00
(II) PCI: 00:18:0: chip 1022,1100 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 00:18:1: chip 1022,1101 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 00:18:2: chip 1022,1102 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 00:18:3: chip 1022,1103 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 01:00:0: chip 1002,5c61 card 174b,0640 rev 01 class 03,00,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
[0] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x000a (VGA_EN is set)
(II) Bus 1 I/O range:
[0] -1 0 0x0000a000 - 0x0000afff (0x1000) IX[B]
(II) Bus 1 non-prefetchable memory range:
[0] -1 0 0xfd300000 - 0xfd6fffff (0x400000) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -1 0 0xd5200000 - 0xf51fffff (0x20000000) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:17:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(II) Host-to-PCI bridge:
(II) Bus -1: bridge is at (0:24:0), (-1,-1,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus -1 I/O range:
[0] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus -1 non-prefetchable memory range:
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus -1 prefetchable memory range:
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
(II) Host-to-PCI bridge:
(II) Bus -1: bridge is at (0:24:1), (-1,-1,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus -1 I/O range:
[0] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus -1 non-prefetchable memory range:
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus -1 prefetchable memory range:
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
(II) Host-to-PCI bridge:
(II) Bus -1: bridge is at (0:24:2), (-1,-1,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus -1 I/O range:
[0] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus -1 non-prefetchable memory range:
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus -1 prefetchable memory range:
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
(II) Host-to-PCI bridge:
(II) Bus -1: bridge is at (0:24:3), (-1,-1,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus -1 I/O range:
[0] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus -1 non-prefetchable memory range:
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus -1 prefetchable memory range:
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
(--) PCI:*(1:0:0) ATI Technologies Inc unknown chipset (0x5c61) rev 1, Mem @ 0xe0000000/28, 0xfd600000/16, I/O @ 0xa000/8, BIOS @ 0xfd500000/17
(II) Addressable bus resource ranges are
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
[1] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) OS-reported resource ranges:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[6] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
(II) PCI Memory resource overlap reduced 0xf8000000 from 0xfbffffff to 0xf7ffffff
(II) Active PCI resource ranges:
[0] -1 0 0xfda00000 - 0xfda000ff (0x100) MX[B]
[1] -1 0 0xfdb00000 - 0xfdb007ff (0x800) MX[B]
[2] -1 0 0xfdd00000 - 0xfdd03fff (0x4000) MX[B]
[3] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O
[4] -1 0 0xfd500000 - 0xfd51ffff (0x20000) MX[B](B)
[5] -1 0 0xfd600000 - 0xfd60ffff (0x10000) MX[B](B)
[6] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[B](B)
[7] -1 0 0x0000ec00 - 0x0000ecff (0x100) IX[B]
[8] -1 0 0x0000c000 - 0x0000c01f (0x20) IX[B]
[9] -1 0 0x0000b800 - 0x0000b81f (0x20) IX[B]
[10] -1 0 0x0000b400 - 0x0000b41f (0x20) IX[B]
[11] -1 0 0x0000b000 - 0x0000b01f (0x20) IX[B]
[12] -1 0 0x0000fc00 - 0x0000fc0f (0x10) IX[B]
[13] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[B]
[14] -1 0 0x0000d400 - 0x0000d40f (0x10) IX[B]
[15] -1 0 0x0000d800 - 0x0000d803 (0x4) IX[B]
[16] -1 0 0x0000e000 - 0x0000e007 (0x8) IX[B]
[17] -1 0 0x0000e400 - 0x0000e403 (0x4) IX[B]
[18] -1 0 0x0000e800 - 0x0000e807 (0x8) IX[B]
[19] -1 0 0x0000c400 - 0x0000c47f (0x80) IX[B]
[20] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[B]
[21] -1 0 0x0000a000 - 0x0000a0ff (0x100) IX[B](B)
(II) Active PCI resource ranges after removing overlaps:
[0] -1 0 0xfda00000 - 0xfda000ff (0x100) MX[B]
[1] -1 0 0xfdb00000 - 0xfdb007ff (0x800) MX[B]
[2] -1 0 0xfdd00000 - 0xfdd03fff (0x4000) MX[B]
[3] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O
[4] -1 0 0xfd500000 - 0xfd51ffff (0x20000) MX[B](B)
[5] -1 0 0xfd600000 - 0xfd60ffff (0x10000) MX[B](B)
[6] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[B](B)
[7] -1 0 0x0000ec00 - 0x0000ecff (0x100) IX[B]
[8] -1 0 0x0000c000 - 0x0000c01f (0x20) IX[B]
[9] -1 0 0x0000b800 - 0x0000b81f (0x20) IX[B]
[10] -1 0 0x0000b400 - 0x0000b41f (0x20) IX[B]
[11] -1 0 0x0000b000 - 0x0000b01f (0x20) IX[B]
[12] -1 0 0x0000fc00 - 0x0000fc0f (0x10) IX[B]
[13] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[B]
[14] -1 0 0x0000d400 - 0x0000d40f (0x10) IX[B]
[15] -1 0 0x0000d800 - 0x0000d803 (0x4) IX[B]
[16] -1 0 0x0000e000 - 0x0000e007 (0x8) IX[B]
[17] -1 0 0x0000e400 - 0x0000e403 (0x4) IX[B]
[18] -1 0 0x0000e800 - 0x0000e807 (0x8) IX[B]
[19] -1 0 0x0000c400 - 0x0000c47f (0x80) IX[B]
[20] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[B]
[21] -1 0 0x0000a000 - 0x0000a0ff (0x100) IX[B](B)
(II) OS-reported resource ranges after removing overlaps with PCI:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[6] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
(II) All system resource ranges:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0xfda00000 - 0xfda000ff (0x100) MX[B]
[6] -1 0 0xfdb00000 - 0xfdb007ff (0x800) MX[B]
[7] -1 0 0xfdd00000 - 0xfdd03fff (0x4000) MX[B]
[8] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O
[9] -1 0 0xfd500000 - 0xfd51ffff (0x20000) MX[B](B)
[10] -1 0 0xfd600000 - 0xfd60ffff (0x10000) MX[B](B)
[11] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[B](B)
[12] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[13] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[14] -1 0 0x0000ec00 - 0x0000ecff (0x100) IX[B]
[15] -1 0 0x0000c000 - 0x0000c01f (0x20) IX[B]
[16] -1 0 0x0000b800 - 0x0000b81f (0x20) IX[B]
[17] -1 0 0x0000b400 - 0x0000b41f (0x20) IX[B]
[18] -1 0 0x0000b000 - 0x0000b01f (0x20) IX[B]
[19] -1 0 0x0000fc00 - 0x0000fc0f (0x10) IX[B]
[20] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[B]
[21] -1 0 0x0000d400 - 0x0000d40f (0x10) IX[B]
[22] -1 0 0x0000d800 - 0x0000d803 (0x4) IX[B]
[23] -1 0 0x0000e000 - 0x0000e007 (0x8) IX[B]
[24] -1 0 0x0000e400 - 0x0000e403 (0x4) IX[B]
[25] -1 0 0x0000e800 - 0x0000e807 (0x8) IX[B]
[26] -1 0 0x0000c400 - 0x0000c47f (0x80) IX[B]
[27] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[B]
[28] -1 0 0x0000a000 - 0x0000a0ff (0x100) IX[B](B)
(II) LoadModule: "dbe"
(II) Loading /usr/X11R6/lib/modules/extensions/libdbe.a
(II) Module dbe: vendor="The XFree86 Project"
compiled for 4.3.0.1, module version = 1.0.0
Module class: XFree86 Server Extension
ABI class: XFree86 Server Extension, version 0.2
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "extmod"
(II) Loading /usr/X11R6/lib/modules/extensions/libextmod.a
(II) Module extmod: vendor="The XFree86 Project"
compiled for 4.3.0.1, module version = 1.0.0
Module class: XFree86 Server Extension
ABI class: XFree86 Server Extension, version 0.2
(II) Loading extension SHAPE
(II) Loading extension MIT-SUNDRY-NONSTANDARD
(II) Loading extension BIG-REQUESTS
(II) Loading extension SYNC
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XC-MISC
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-Misc
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension FontCache
(II) Loading extension TOG-CUP
(II) Loading extension Extended-Visual-Information
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "type1"
(II) Loading /usr/X11R6/lib/modules/fonts/libtype1.a
(II) Module type1: vendor="The XFree86 Project"
compiled for 4.3.0.1, module version = 1.0.2
Module class: XFree86 Font Renderer
ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Type1
(II) Loading font CID
(II) LoadModule: "freetype"
(II) Loading /usr/X11R6/lib/modules/fonts/libfreetype.a
(II) Module freetype: vendor="The XFree86 Project"
compiled for 4.3.0.1, module version = 2.0.2
Module class: XFree86 Font Renderer
ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font FreeType
(II) LoadModule: "glx"
(II) Loading /usr/X11R6/lib/modules/extensions/libglx.a
(II) Module glx: vendor="The XFree86 Project"
compiled for 4.3.0.1, module version = 1.0.0
ABI class: XFree86 Server Extension, version 0.2
(II) Loading sub module "GLcore"
(II) LoadModule: "GLcore"
(II) Loading /usr/X11R6/lib/modules/extensions/libGLcore.a
Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_clip.o": No symbols found
Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_norm.o": No symbols found
Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_xform.o": No symbols found
Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_vertex.o": No symbols found
(II) Module GLcore: vendor="The XFree86 Project"
compiled for 4.3.0.1, module version = 1.0.0
ABI class: XFree86 Server Extension, version 0.2
(II) Loading extension GLX
(II) LoadModule: "dri"
(II) Loading /usr/X11R6/lib/modules/extensions/libdri.a
(II) Module dri: vendor="The XFree86 Project"
compiled for 4.3.0.1, module version = 1.0.0
ABI class: XFree86 Server Extension, version 0.2
(II) Loading sub module "drm"
(II) LoadModule: "drm"
(II) Loading /usr/X11R6/lib/modules/linux/libdrm.a
(II) Module drm: vendor="The XFree86 Project"
compiled for 4.3.0.1, module version = 1.0.0
ABI class: XFree86 Server Extension, version 0.2
(II) Loading extension XFree86-DRI
(II) LoadModule: "fglrx"
(II) Loading /usr/X11R6/lib/modules/drivers/fglrx_drv.o
(II) Module fglrx: vendor="FireGL - ATI Technologies Inc."
compiled for 4.3.0.1, module version = 8.16.20
Module class: XFree86 Video Driver
ABI class: XFree86 Video Driver, version 0.6
(II) LoadModule: "mouse"
(II) Loading /usr/X11R6/lib/modules/input/mouse_drv.o
(II) Module mouse: vendor="The XFree86 Project"
compiled for 4.3.0.1, module version = 1.0.0
Module class: XFree86 XInput Driver
ABI class: XFree86 XInput driver, version 0.4
(II) ATI Radeon/FireGL: The following chipsets are supported:
RADEON 9000/9000 PRO (RV250 4966), RADEON 9000 LE (RV250 4967),
MOBILITY FireGL 9000 (M9 4C64), MOBILITY RADEON 9000 (M9 4C66),
RADEON 9000 PRO (D9 4C67), RADEON 9250 (RV280 5960),
RADEON 9200 (RV280 5961), RADEON 9200 SE (RV280 5964),
MOBILITY RADEON 9200 (M9+ 5C61), MOBILITY RADEON 9200 (M9+ 5C63),
FireGL 8800 (R200 5148), RADEON 8500 (R200 514C),
RADEON 9100 (R200 514D), RADEON 8500 AIW (R200 4242),
RADEON 9600 (RV350 4150), RADEON 9600 SE (RV350 4151),
RADEON 9600 PRO (RV360 4152),
MOBILITY RADEON 9600/9700 (M10/M11 4E50),
MOBILITY RADEON 9550 (M12 4E56), RADEON 9500 (R300 4144),
RADEON 9600 TX (R300 4146), FireGL Z1 (R300 4147),
RADEON 9700 PRO (R300 4E44), RADEON 9500 PRO/9700 (R300 4E45),
RADEON 9600 TX (R300 4E46), FireGL X1 (R300 4E47),
RADEON 9800 SE (R350 4148), RADEON 9550 (RV350 4153),
FireGL T2 (RV350 4154), RADEON 9800 PRO (R350 4E48),
RADEON 9800 (R350 4E49), RADEON 9800 XT (R360 4E4A),
FireGL X2-256/X2-256t (R350 4E4B),
MOBILITY FireGL T2/T2e (M10/M11 4E54), RADEON X300 (RV370 5B60),
RADEON X600 (RV380 5B62), FireGL V3100 (RV370 5B64),
MOBILITY RADEON X300 (M22 5460), MOBILITY FireGL V3100 (M22 5464),
RADEON X600 (RV380 3E50), FireGL V3200 (RV380 3E54),
MOBILITY RADEON X600 (M24 3150), MOBILITY RADEON X300 (M22 3152),
MOBILITY FireGL V3200 (M24 3154), RADEON X800 (R420 4A48),
RADEON X800 PRO (R420 4A49), RADEON X800 SE (R420 4A4A),
RADEON X800 XT (R420 4A4B), RADEON X800 (R420 4A4C),
FireGL X3-256 (R420 4A4D), MOBILITY RADEON 9800 (M18 4A4E),
RADEON X800 XT Platinum Edition (R420 4A50), RADEON X800 (R423 5548),
RADEON X800 PRO (R423 5549),
RADEON X800 XT Platinum Edition (R423 554A),
RADEON X800 SE (R423 554B), RADEON X800 XT (R423 5D57),
FireGL V7100 (R423 5550), FireGL V5100 (R423 5551),
MOBILITY RADEON X800 XT (M28 5D48), MOBILITY FireGL V5100 (M28 5D49),
RADEON X800 XL (R430 554D), RADEON X800 (R430 554F),
RADEON X850 XT Platinum Edition (R480 5D4D),
RADEON X850 PRO (R480 5D4F), RADEON X850 XT (R480 5D52),
MOBILITY FireGL V5000 (M26 564A), MOBILITY FireGL V5000 (M26 564B),
FireGL V5000 (RV410 5E48), FireGL V3300 (RV410 5E49),
RADEON X700 XT (RV410 5E4A), RADEON X700 PRO (RV410 5E4B),
RADEON X700 SE (RV410 5E4C), RADEON X700 (RV410 5E4D),
RADEON X700 (RV410 5E4F), MOBILITY RADEON X700 (M26 5652),
MOBILITY RADEON X700 (M26 5653), RADEON 9100 IGP (RS300 5834),
RADEON 9000 PRO/9100 PRO IGP (RS350 7834),
MOBILITY RADEON 9000/9100 IGP (RS300M 5835),
RADEON XPRESS 200 (RS400 5A41), RADEON XPRESS 200M (RS400 5A42),
RADEON XPRESS 200 (RS480 5954), RADEON XPRESS 200M (RS480 5955),
RADEON XPRESS 200 (RS482 5974), RADEON XPRESS 200M (RS482 5975),
RADEON XPRESS 200 (RC410 5A61), RADEON XPRESS 200M (RC410 5A62)
(II) Primary Device is: PCI 01:00:0
(II) ATI Proprietary Linux Driver Version Identifier:8.16.20
(II) ATI Proprietary Linux Driver Release Identifier: @@UNRELEASED_AND_UNSUPPORTED_DRIVER@@
(II) ATI Proprietary Linux Driver Build Date: Aug 16 2005 00:14:49
(II) ATI Proprietary Linux Driver Build Information: autobuild-rel-r6-8.16.1-driver-lnx-206829
(--) Chipset MOBILITY RADEON 9200 (M9+ 5C61) found
(II) resource ranges after xf86ClaimFixedResources() call:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0xfda00000 - 0xfda000ff (0x100) MX[B]
[6] -1 0 0xfdb00000 - 0xfdb007ff (0x800) MX[B]
[7] -1 0 0xfdd00000 - 0xfdd03fff (0x4000) MX[B]
[8] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O
[9] -1 0 0xfd500000 - 0xfd51ffff (0x20000) MX[B](B)
[10] -1 0 0xfd600000 - 0xfd60ffff (0x10000) MX[B](B)
[11] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[B](B)
[12] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[13] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[14] -1 0 0x0000ec00 - 0x0000ecff (0x100) IX[B]
[15] -1 0 0x0000c000 - 0x0000c01f (0x20) IX[B]
[16] -1 0 0x0000b800 - 0x0000b81f (0x20) IX[B]
[17] -1 0 0x0000b400 - 0x0000b41f (0x20) IX[B]
[18] -1 0 0x0000b000 - 0x0000b01f (0x20) IX[B]
[19] -1 0 0x0000fc00 - 0x0000fc0f (0x10) IX[B]
[20] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[B]
[21] -1 0 0x0000d400 - 0x0000d40f (0x10) IX[B]
[22] -1 0 0x0000d800 - 0x0000d803 (0x4) IX[B]
[23] -1 0 0x0000e000 - 0x0000e007 (0x8) IX[B]
[24] -1 0 0x0000e400 - 0x0000e403 (0x4) IX[B]
[25] -1 0 0x0000e800 - 0x0000e807 (0x8) IX[B]
[26] -1 0 0x0000c400 - 0x0000c47f (0x80) IX[B]
[27] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[B]
[28] -1 0 0x0000a000 - 0x0000a0ff (0x100) IX[B](B)
(II) fglrx(0): pEnt->device->identifier=0x8209a70
(II) resource ranges after probing:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0xfda00000 - 0xfda000ff (0x100) MX[B]
[6] -1 0 0xfdb00000 - 0xfdb007ff (0x800) MX[B]
[7] -1 0 0xfdd00000 - 0xfdd03fff (0x4000) MX[B]
[8] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O
[9] -1 0 0xfd500000 - 0xfd51ffff (0x20000) MX[B](B)
[10] -1 0 0xfd600000 - 0xfd60ffff (0x10000) MX[B](B)
[11] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[B](B)
[12] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B]
[13] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B]
[14] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B]
[15] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[16] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[17] -1 0 0x0000ec00 - 0x0000ecff (0x100) IX[B]
[18] -1 0 0x0000c000 - 0x0000c01f (0x20) IX[B]
[19] -1 0 0x0000b800 - 0x0000b81f (0x20) IX[B]
[20] -1 0 0x0000b400 - 0x0000b41f (0x20) IX[B]
[21] -1 0 0x0000b000 - 0x0000b01f (0x20) IX[B]
[22] -1 0 0x0000fc00 - 0x0000fc0f (0x10) IX[B]
[23] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[B]
[24] -1 0 0x0000d400 - 0x0000d40f (0x10) IX[B]
[25] -1 0 0x0000d800 - 0x0000d803 (0x4) IX[B]
[26] -1 0 0x0000e000 - 0x0000e007 (0x8) IX[B]
[27] -1 0 0x0000e400 - 0x0000e403 (0x4) IX[B]
[28] -1 0 0x0000e800 - 0x0000e807 (0x8) IX[B]
[29] -1 0 0x0000c400 - 0x0000c47f (0x80) IX[B]
[30] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[B]
[31] -1 0 0x0000a000 - 0x0000a0ff (0x100) IX[B](B)
[32] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B]
[33] 0 0 0x000003c0 - 0x000003df (0x20) IS[B]
(II) Setting vga for screen 0.
(II) fglrx(0): === [R200PreInit] === begin, [s]
(II) Loading sub module "vgahw"
(II) LoadModule: "vgahw"
(II) Loading /usr/X11R6/lib/modules/libvgahw.a
(II) Module vgahw: vendor="The XFree86 Project"
compiled for 4.3.0.1, module version = 0.1.0
ABI class: XFree86 Video Driver, version 0.6
(II) fglrx(0): PCI bus 1 card 0 func 0
(**) fglrx(0): Depth 24, (--) framebuffer bpp 32
(II) fglrx(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
(==) fglrx(0): Default visual is TrueColor
(**) fglrx(0): Option "NoAccel" "no"
(**) fglrx(0): Option "NoDRI" "no"
(**) fglrx(0): Option "Capabilities" "0x00000000"
(**) fglrx(0): Option "CapabilitiesEx" "0x00000000"
(**) fglrx(0): Option "GammaCorrectionI" "0x00000000"
(**) fglrx(0): Option "GammaCorrectionII" "0x00000000"
(**) fglrx(0): Option "OpenGLOverlay" "on"
(**) fglrx(0): Option "VideoOverlay" "on"
(**) fglrx(0): Option "DesktopSetup" "(null)"
(**) fglrx(0): Option "ScreenOverlap" "0"
(**) fglrx(0): Option "UseInternalAGPGART" "on"
(**) fglrx(0): Option "Stereo" "off"
(**) fglrx(0): Option "StereoSyncEnable" "1"
(**) fglrx(0): Option "UseFastTLS" "0"
(**) fglrx(0): Option "BlockSignalsOnLock" "on"
(**) fglrx(0): Option "ForceGenericCPU" "on"
(**) fglrx(0): Option "CenterMode" "off"
(**) fglrx(0): Option "FSAAScale" "1"
(**) fglrx(0): Option "FSAAEnable" "no"
(**) fglrx(0): Option "FSAADisableGamma" "no"
(**) fglrx(0): Option "FSAACustomizeMSPos" "no"
(**) fglrx(0): Option "FSAAMSPosX0" "0.000000"
(**) fglrx(0): Option "FSAAMSPosY0" "0.000000"
(**) fglrx(0): Option "FSAAMSPosX1" "0.000000"
(**) fglrx(0): Option "FSAAMSPosY1" "0.000000"
(**) fglrx(0): Option "FSAAMSPosX2" "0.000000"
(**) fglrx(0): Option "FSAAMSPosY2" "0.000000"
(**) fglrx(0): Option "FSAAMSPosX3" "0.000000"
(**) fglrx(0): Option "FSAAMSPosY3" "0.000000"
(**) fglrx(0): Option "FSAAMSPosX4" "0.000000"
(**) fglrx(0): Option "FSAAMSPosY4" "0.000000"
(**) fglrx(0): Option "FSAAMSPosX5" "0.000000"
(**) fglrx(0): Option "FSAAMSPosY5" "0.000000"
(**) fglrx(0): Option "PseudoColorVisuals" "off"
(**) fglrx(0): Qbs disabled
(==) fglrx(0): FAST_SWAP disabled
(==) fglrx(0): RGB weight 888
(II) fglrx(0): Using 8 bits per RGB (8 bit DAC)
(**) fglrx(0): Gamma Correction for I is 0x00000000
(**) fglrx(0): Gamma Correction for II is 0x00000000
(==) fglrx(0): Buffer Tiling is ON
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Loading /usr/X11R6/lib/modules/linux/libint10.a
(II) Module int10: vendor="The XFree86 Project"
compiled for 4.3.0.1, module version = 1.0.0
ABI class: XFree86 Video Driver, version 0.6
(WW) fglrx(0): Bad V_BIOS checksum
(II) fglrx(0): Primary V_BIOS segment is: 0xc000
(**) fglrx(0): Option "mtrr" "off"
(--) fglrx(0): Chipset: "MOBILITY RADEON 9200 (M9+ 5C61)" (Chipset = 0x5c61)
(--) fglrx(0): (PciSubVendor = 0x174b, PciSubDevice = 0x0640)
(--) fglrx(0): board vendor info: third party graphics adapter - NOT original ATI
(--) fglrx(0): Linear framebuffer (phys) at 0xe0000000
(--) fglrx(0): MMIO registers at 0xfd600000
(--) fglrx(0): ROM-BIOS at 0xfd500000
(II) Loading sub module "vbe"
(II) LoadModule: "vbe"
(II) Loading /usr/X11R6/lib/modules/libvbe.a
(II) Module vbe: vendor="The XFree86 Project"
compiled for 4.3.0.1, module version = 1.1.0
ABI class: XFree86 Video Driver, version 0.6
(II) fglrx(0): VESA BIOS detected
(II) fglrx(0): VESA VBE Version 2.0
(II) fglrx(0): VESA VBE Total Mem: 16384 kB
(II) fglrx(0): VESA VBE OEM: ATI RADEON 9200
(II) fglrx(0): VESA VBE OEM Software Rev: 1.0
(II) fglrx(0): VESA VBE OEM Vendor: ATI Technologies Inc.
(II) fglrx(0): VESA VBE OEM Product: V280
(II) fglrx(0): VESA VBE OEM Product Rev: 01.00
(--) fglrx(0): VideoRAM: 131072 kByte, Type: DDR SGRAM / SDRAM
(II) fglrx(0): AGP card detected
(WW) fglrx(0): board is an unknown third party board, chipset is supported
(II) Loading sub module "ddc"
(II) LoadModule: "ddc"
(II) Loading /usr/X11R6/lib/modules/libddc.a
(II) Module ddc: vendor="The XFree86 Project"
compiled for 4.3.0.1, module version = 1.0.0
ABI class: XFree86 Video Driver, version 0.6
(II) fglrx(0): Connected Display1: CRT on primary DAC
(II) fglrx(0): Display1 EDID data ---------------------------
(II) fglrx(0): Manufacturer: ACR Model: 9e Serial#: 16843009
(II) fglrx(0): Year: 2002 Week: 15
(II) fglrx(0): EDID Version: 1.3
(II) fglrx(0): Analog Display Input, Input Voltage Level: 0.700/0.300 V
(II) fglrx(0): Signal levels configurable
(II) fglrx(0): Sync: Separate
(II) fglrx(0): Max H-Image Size [cm]: horiz.: 30 vert.: 23
(II) fglrx(0): Gamma: 1.80
(II) fglrx(0): DPMS capabilities: StandBy Suspend Off; RGB/Color Display
(II) fglrx(0): First detailed timing is preferred mode
(II) fglrx(0): redX: 0.595 redY: 0.350 greenX: 0.315 greenY: 0.575
(II) fglrx(0): blueX: 0.150 blueY: 0.125 whiteX: 0.300 whiteY: 0.320
(II) fglrx(0): Supported VESA Video Modes:
(II) fglrx(0): 720x400@70Hz
(II) fglrx(0): 640x480@60Hz
(II) fglrx(0): 640x480@67Hz
(II) fglrx(0): 640x480@72Hz
(II) fglrx(0): 640x480@75Hz
(II) fglrx(0): 800x600@56Hz
(II) fglrx(0): 800x600@60Hz
(II) fglrx(0): 800x600@72Hz
(II) fglrx(0): 800x600@75Hz
(II) fglrx(0): 832x624@75Hz
(II) fglrx(0): 1024x768@60Hz
(II) fglrx(0): 1024x768@70Hz
(II) fglrx(0): 1024x768@75Hz
(II) fglrx(0): Manufacturer's mask: 0
(II) fglrx(0): Supported additional Video Mode:
(II) fglrx(0): clock: 65.0 MHz Image Size: 300 x 230 mm
(II) fglrx(0): h_active: 1024 h_sync: 1048 h_sync_end 1184 h_blank_end 1344 h_border: 0
(II) fglrx(0): v_active: 768 v_sync: 771 v_sync_end 777 v_blanking: 806 v_border: 0
(II) fglrx(0): Monitor name: Acer AJ15FP
(II) fglrx(0): Ranges: V min: 50 V max: 75 Hz, H min: 30 H max: 60 kHz, PixClock max 80 MHz
(II) fglrx(0): Serial No: 7215TD003177
(II) fglrx(0): End of Display1 EDID data --------------------
(WW) fglrx(0): Specified desktop setup not supported: 8
(II) fglrx(0): Primary Controller - CRT on primary DAC
(II) fglrx(0): Internal Desktop Setting: 0x00000004
(**) fglrx(0): PseudoColor visuals disabled
(**) fglrx(0): OpenGL Overlay enabled
(==) fglrx(0): Using gamma correction (1.0, 1.0, 1.0)
(**) fglrx(0): Center Mode is disabled
(==) fglrx(0): TMDS coherent mode is enabled
(II) fglrx(0): Total of 24 modes found for primary display.
(--) fglrx(0): Virtual size is 1024x768 (pitch 1024)
(**) fglrx(0): *Mode "1024x768": 78.8 MHz (scaled from 0.0 MHz), 60.0 kHz, 75.0 Hz
(II) fglrx(0): Modeline "1024x768" 78.75 1024 1040 1136 1312 768 769 772 800
(**) fglrx(0): Default mode "1024x768": 78.4 MHz (scaled from 0.0 MHz), 57.7 kHz, 72.0 Hz
(II) fglrx(0): Modeline "1024x768" 78.43 1024 1080 1192 1360 768 769 772 801
(**) fglrx(0): Default mode "1024x768": 75.0 MHz (scaled from 0.0 MHz), 56.5 kHz, 70.0 Hz
(II) fglrx(0): Modeline "1024x768" 75.00 1024 1048 1184 1328 768 771 777 806
(**) fglrx(0): Default mode "1024x768": 65.0 MHz (scaled from 0.0 MHz), 48.4 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1024x768" 65.00 1024 1048 1184 1344 768 771 777 806
(**) fglrx(0): Default mode "1024x768": 44.9 MHz (scaled from 0.0 MHz), 35.5 kHz, 43.0 Hz
(II) fglrx(0): Modeline "1024x768" 44.90 1024 1032 1208 1264 768 768 772 817 +hsync
(**) fglrx(0): *Mode "800x600": 49.5 MHz (scaled from 0.0 MHz), 46.9 kHz, 75.0 Hz
(II) fglrx(0): Modeline "800x600" 49.50 800 816 896 1056 600 601 604 625
(**) fglrx(0): Default mode "800x600": 50.0 MHz (scaled from 0.0 MHz), 48.1 kHz, 72.0 Hz
(II) fglrx(0): Modeline "800x600" 50.00 800 856 976 1040 600 637 643 666
(**) fglrx(0): Default mode "800x600": 45.5 MHz (scaled from 0.0 MHz), 43.8 kHz, 70.0 Hz
(II) fglrx(0): Modeline "800x600" 45.50 800 840 920 1040 600 601 604 625
(**) fglrx(0): Default mode "800x600": 40.0 MHz (scaled from 0.0 MHz), 37.9 kHz, 60.0 Hz
(II) fglrx(0): Modeline "800x600" 40.00 800 840 968 1056 600 601 605 628
(**) fglrx(0): Default mode "800x600": 36.0 MHz (scaled from 0.0 MHz), 35.2 kHz, 56.0 Hz
(II) fglrx(0): Modeline "800x600" 36.00 800 824 896 1024 600 601 603 625
(**) fglrx(0): Default mode "800x600": 29.6 MHz (scaled from 0.0 MHz), 29.8 kHz, 47.0 Hz
(II) fglrx(0): Modeline "800x600" 29.61 800 816 896 992 600 601 604 635 +hsync
(**) fglrx(0): *Mode "640x480": 31.5 MHz (scaled from 0.0 MHz), 37.5 kHz, 75.0 Hz
(II) fglrx(0): Modeline "640x480" 31.50 640 656 720 840 480 481 484 500
(**) fglrx(0): Default mode "640x480": 31.5 MHz (scaled from 0.0 MHz), 37.9 kHz, 72.0 Hz
(II) fglrx(0): Modeline "640x480" 31.50 640 664 704 832 480 489 492 520
(**) fglrx(0): Default mode "640x480": 25.2 MHz (scaled from 0.0 MHz), 31.5 kHz, 60.0 Hz
(II) fglrx(0): Modeline "640x480" 25.18 640 656 752 800 480 490 492 525
(**) fglrx(0): Default mode "640x400": 28.1 MHz (scaled from 0.0 MHz), 33.7 kHz, 75.0 Hz
(II) fglrx(0): Modeline "640x400" 28.07 640 696 736 832 400 413 415 449 -hsync -vsync
(**) fglrx(0): Default mode "640x400": 24.9 MHz (scaled from 0.0 MHz), 31.5 kHz, 60.0 Hz
(II) fglrx(0): Modeline "640x400" 24.92 640 664 760 792 400 460 462 525 -hsync -vsync
(**) fglrx(0): Default mode "512x384": 19.7 MHz (scaled from 0.0 MHz), 31.1 kHz, 75.0 Hz
(II) fglrx(0): Modeline "512x384" 19.68 512 528 576 632 384 384 385 416 -hsync
(**) fglrx(0): Default mode "512x384": 19.8 MHz (scaled from 0.0 MHz), 29.8 kHz, 60.0 Hz
(II) fglrx(0): Modeline "512x384" 19.81 512 544 624 664 384 451 453 497 -hsync
(**) fglrx(0): Default mode "400x300": 24.8 MHz (scaled from 0.0 MHz), 46.9 kHz, 75.0 Hz
(II) fglrx(0): Modeline "400x300" 24.75 400 408 448 528 600 601 602 625 -hsync
(**) fglrx(0): Default mode "400x300": 22.3 MHz (scaled from 0.0 MHz), 45.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline "400x300" 22.33 400 416 480 496 600 601 605 742 -hsync
(**) fglrx(0): Default mode "320x240": 15.8 MHz (scaled from 0.0 MHz), 37.9 kHz, 75.0 Hz
(II) fglrx(0): Modeline "320x240" 15.75 320 328 360 416 480 481 482 501 -hsync
(**) fglrx(0): Default mode "320x240": 12.6 MHz (scaled from 0.0 MHz), 31.5 kHz, 60.0 Hz
(II) fglrx(0): Modeline "320x240" 12.59 320 328 376 400 480 491 493 525 -hsync
(**) fglrx(0): Default mode "320x200": 13.1 MHz (scaled from 0.0 MHz), 31.5 kHz, 75.0 Hz
(II) fglrx(0): Modeline "320x200" 13.10 320 352 368 416 400 406 407 417 -hsync -vsync
(**) fglrx(0): Default mode "320x200": 12.6 MHz (scaled from 0.0 MHz), 31.5 kHz, 60.0 Hz
(II) fglrx(0): Modeline "320x200" 12.59 320 336 384 400 400 457 459 524 -hsync -vsync
(--) fglrx(0): Display dimensions: (300, 230) mm
(--) fglrx(0): DPI set to (86, 84)
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/X11R6/lib/modules/libfb.a
(II) Module fb: vendor="The XFree86 Project"
compiled for 4.3.0.1, module version = 1.0.0
ABI class: XFree86 ANSI C Emulation, version 0.2
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Loading /usr/X11R6/lib/modules/libramdac.a
(II) Module ramdac: vendor="The XFree86 Project"
compiled for 4.3.0.1, module version = 0.1.0
ABI class: XFree86 Video Driver, version 0.6
(**) fglrx(0): NoAccel = NO
(II) Loading sub module "xaa"
(II) LoadModule: "xaa"
(II) Loading /usr/X11R6/lib/modules/libxaa.a
(II) Module xaa: vendor="The XFree86 Project"
compiled for 4.3.0.1, module version = 1.1.0
ABI class: XFree86 Video Driver, version 0.6
(==) fglrx(0): HPV inactive
(==) fglrx(0): FSAA enabled: NO
(**) fglrx(0): FSAA Gamma enabled
(**) fglrx(0): FSAA Multisample Position is fix
(**) fglrx(0): NoDRI = NO
(II) Loading sub module "fglrxdrm"
(II) LoadModule: "fglrxdrm"
(II) Loading /usr/X11R6/lib/modules/linux/libfglrxdrm.a
(II) Module fglrxdrm: vendor="FireGL - ATI Technologies Inc."
compiled for 4.3.0.1, module version = 8.16.20
ABI class: XFree86 Server Extension, version 0.2
(II) fglrx(0): Depth moves disabled by default
(**) fglrx(0): Capabilities: 0x00000000
(**) fglrx(0): CapabilitiesEx: 0x00000000
(**) fglrx(0): cpuFlags: 0x00000000
(**) fglrx(0): cpuSpeedMHz: 0x00000642
(==) fglrx(0): OpenGL ClientDriverName: "atiogl_a_dri.so"
(**) fglrx(0): using built in AGPGART module: yes
(**) fglrx(0): UseFastTLS=0
(**) fglrx(0): BlockSignalsOnLock=1
(==) fglrx(0): EnablePrivateBackZ = NO
(--) Depth 24 pixmap format is 32 bpp
(II) do I need RAC? No, I don't.
(II) resource ranges after preInit:
[0] 0 0 0xfd600000 - 0xfd60ffff (0x10000) MX[B]
[1] 0 0 0xe0000000 - 0xefffffff (0x10000000) MX[B]
[2] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[3] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[4] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[5] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[6] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[7] -1 0 0xfda00000 - 0xfda000ff (0x100) MX[B]
[8] -1 0 0xfdb00000 - 0xfdb007ff (0x800) MX[B]
[9] -1 0 0xfdd00000 - 0xfdd03fff (0x4000) MX[B]
[10] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O
[11] -1 0 0xfd500000 - 0xfd51ffff (0x20000) MX[B](B)
[12] -1 0 0xfd600000 - 0xfd60ffff (0x10000) MX[B](B)
[13] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[B](B)
[14] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B]
[15] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B]
[16] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B]
[17] 0 0 0x0000a000 - 0x0000a0ff (0x100) IX[B]
[18] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[19] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[20] -1 0 0x0000ec00 - 0x0000ecff (0x100) IX[B]
[21] -1 0 0x0000c000 - 0x0000c01f (0x20) IX[B]
[22] -1 0 0x0000b800 - 0x0000b81f (0x20) IX[B]
[23] -1 0 0x0000b400 - 0x0000b41f (0x20) IX[B]
[24] -1 0 0x0000b000 - 0x0000b01f (0x20) IX[B]
[25] -1 0 0x0000fc00 - 0x0000fc0f (0x10) IX[B]
[26] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[B]
[27] -1 0 0x0000d400 - 0x0000d40f (0x10) IX[B]
[28] -1 0 0x0000d800 - 0x0000d803 (0x4) IX[B]
[29] -1 0 0x0000e000 - 0x0000e007 (0x8) IX[B]
[30] -1 0 0x0000e400 - 0x0000e403 (0x4) IX[B]
[31] -1 0 0x0000e800 - 0x0000e807 (0x8) IX[B]
[32] -1 0 0x0000c400 - 0x0000c47f (0x80) IX[B]
[33] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[B]
[34] -1 0 0x0000a000 - 0x0000a0ff (0x100) IX[B](B)
[35] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B]
[36] 0 0 0x000003c0 - 0x000003df (0x20) IS[B]
(II) fglrx(0): UMM Bus area: 0xe0501000 (size=0x07aff000)
(II) fglrx(0): UMM area: 0xe0501000 (size=0x07aff000)
(II) fglrx(0): driver needs XFree86 4.3.x.y with x.y >= 0.1
(II) fglrx(0): detected XFree86 4.3.0.1
(II) Loading extension ATIFGLRXDRI
(II) fglrx(0): doing DRIScreenInit
drmOpenDevice: minor is 0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is -1, (Unknown error 999)
drmOpenDevice: open result is -1, (Unknown error 999)
drmOpenDevice: Open failed
drmOpenDevice: minor is 0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is -1, (Unknown error 999)
drmOpenDevice: open result is -1, (Unknown error 999)
drmOpenDevice: Open failed
[drm] failed to load kernel module "fglrx"
(II) fglrx(0): [drm] drmOpen failed
(EE) fglrx(0): DRIScreenInit failed!
(WW) fglrx(0): ***********************************************
(WW) fglrx(0): * DRI initialization failed! *
(WW) fglrx(0): * (maybe driver kernel module missing or bad) *
(WW) fglrx(0): * 2D acceleraton available (MMIO) *
(WW) fglrx(0): * no 3D acceleration available *
(WW) fglrx(0): ********************************************* *
(II) fglrx(0): FBADPhys: 0xe0000000 FBMappedSize: 0x08000000
(II) fglrx(0): FBMM initialized for area (0,0)-(1024,8191)
(II) fglrx(0): FBMM auto alloc for area (0,0)-(1024,768) (front color buffer - assumption)
(==) fglrx(0): Backing store disabled
(==) fglrx(0): Silken mouse enabled
(II) fglrx(0): Using hardware cursor (scanline 768)
(II) fglrx(0): Largest offscreen area available: 1024 x 7419
(II) fglrx(0): Using XFree86 Acceleration Architecture (XAA)
Screen to screen bit blits
Solid filled rectangles
Solid Horizontal and Vertical Lines
Offscreen Pixmaps
Setting up tile and stipple cache:
32 128x128 slots
32 256x256 slots
16 512x512 slots
(II) fglrx(0): Acceleration enabled
(II) fglrx(0): Direct rendering disabled
(II) Loading extension FGLRXEXTENSION
(II) Loading extension ATITVOUT
(==) RandR enabled
(II) Setting vga for screen 0.
(II) Initializing built-in extension MIT-SHM
(II) Initializing built-in extension XInputExtension
(II) Initializing built-in extension XTEST
(II) Initializing built-in extension XKEYBOARD
(II) Initializing built-in extension LBX
(II) Initializing built-in extension XC-APPGROUP
(II) Initializing built-in extension SECURITY
(II) Initializing built-in extension XINERAMA
(II) Initializing built-in extension XFree86-Bigfont
(II) Initializing built-in extension RENDER
(II) Initializing built-in extension RANDR
(**) Option "Protocol" "ImPS/2"
(**) Mouse1: Protocol: "ImPS/2"
(**) Option "CorePointer"
(**) Mouse1: Core Pointer
(**) Option "Device" "/dev/psaux"
(**) Option "Emulate3Buttons"
(**) Mouse1: Emulate3Buttons, Emulate3Timeout: 50
(**) Option "ZAxisMapping" "4 5"
(**) Mouse1: ZAxisMapping: buttons 4 and 5
(**) Mouse1: Buttons: 5
(II) Keyboard "Keyboard1" handled by legacy driver
(II) XINPUT: Adding extended input device "Mouse1" (type: MOUSE)
(II) Mouse1: ps2EnableDataReporting: succeeded
Could not init font path element /usr/X11R6/lib/X11/fonts/Speedo/, removing from list!
GetModeLine - scrn: 0 clock: 78750
GetModeLine - hdsp: 1024 hbeg: 1040 hend: 1136 httl: 1312
vdsp: 768 vbeg: 769 vend: 772 vttl: 800 flags: 0
Error in "UpdateFile" -4
Error in "UpdateFile" -4

NA01
07-09-2005, 23:01
So che ci sono 2000 post simili a questo, li ho letti quasi tutti ma non sono riuscito a trovare una soluzione... ho una ati 9250, debian con kernel 2.6.8 e xfree. Sto usando i driver ati presi dal sito soltanto che non riesco a far funzionare il DRI ...

e ben ti sta!!!!:D
hai una scheda supportata dai dri, usa i driver liberi :cool:

dri.sourceforge.net (cmq sul tuo si sistema sono già installati ;) )

ciao

deviltigre
07-09-2005, 23:09
e ben ti sta!!!!:D
hai una scheda supportata dai dri, usa i driver liberi :cool:

dri.sourceforge.net (cmq sul tuo si sistema sono già installati ;) )

ciao


pekkato ke con quelli liberi nn va l'accelerazione 3d... :(
daltronde se hai 1 ati 6 nella lista nera x ora... :D

NA01
07-09-2005, 23:11
pekkato ke con quelli liberi nn va l'accelerazione 3d... :(
daltronde se hai 1 ati 6 nella lista nera x ora... :D
ah, vile untore!!!
tu menti!!!! :sofico:
la 9250 è l'ultima supportata dai dri, tutte quelle con l'r200 e derivati vanno (quindi anche l'r250 della 9***)

ciao!

deviltigre
07-09-2005, 23:38
:confused: :confused: :confused:
quindi tu usi il 3d senza i driver proprietari ati?
io ho dei dubbi.... :)

Sir Wallace
08-09-2005, 08:21
3D con i dri... ok, glxinfo mi da direct rendering yes... ma se ottenere con glxgear 200fps per te è 3d.... :mbe:

cmq, ho anch'io un 9250 ed ho completamente abbandonato la speranza di utilizzare i driver ati... ho seguito decine di guide, provato un sacco di opzioni nel xorg.conf, compilato e ricompilato, moduli caricati e non... stesso risultato: schermo nero.... :cry: ormai aspetterò la prox release dei driver per vedere se cambia qualcosa, ma ne dubito... intento comincio a risparmiare per passare ad nvidia! :p :O

aik: prima di tutto, mi pare di vedere che hai caricato un po' troppi moduli per l'agp...:
agpgart ##### OK
Ma 'scegline' uno solo di questi!!!
ati-agp
nvidia-agp
intel-mch-agp

Se carichi quei moduli, poi non puoi usare il supporto agp interno, quindi cambia l'opzione da
Option "UseInternalAGPGART" "on"
a
Option "UseInternalAGPGART" "no"

Auguri.,.. anche se non ci conterei troppo.... :(
PS: verifica anche di avere un kernel correttamente configurato... Se non lo hai ancora fatto, leggi questo (http://www.stanchina.net/~flavio/debian/fglrx-installer.html) . Per molti ha funzionato... io l'ho provato ieri sera ottenendo lo stesso risultato... :cry:

deviltigre
08-09-2005, 10:33
io c ho rinunciato....

nn è impresa difficile , è colpa di quei driver da 4 soldi..
lascia xdere , io aspetto la prox release e confido nel cielo :D

Sir Wallace
08-09-2005, 10:35
deviltigre: per curiosità... che scheda hai?

VegetaSSJ5
08-09-2005, 10:36
a me non andava il dri perchè i moduli agp vanno caricati prima del modulo della scheda video. nel tuo caso invece di caricare tutti quei chipset che non sono adatti per il tuo pc devi caricare in sequenza questi: agpgart, amd64_agp, fglrx e forse prima del fglrx devi caricare anche il drm ma intanto prova a fare così.

deviltigre
08-09-2005, 10:37
ati ladeon :D 9000 :D

devo anke usare l'uscita tv , ma è 1 kasino.. e poi con driver come quelli..
nel 2020 ce la farò :D

Sir Wallace
08-09-2005, 10:42
a me non andava il dri perchè i moduli agp vanno caricati prima del modulo della scheda video. nel tuo caso invece di caricare tutti quei chipset che non sono adatti per il tuo pc devi caricare in sequenza questi: agpgart, amd64_agp, fglrx e forse prima del fglrx devi caricare anche il drm ma intanto prova a fare così.

hihihihihihiihihihihihihi
come ho già detto.... prova, almeno ti impratichi un po' di linux! ;)
Vegeta: io i moduli li ho caricati (e non) in qualsiasi ordine... stesso risultato! cmq, se dovesse andare... che scheda hai? kernel? xorg? distro? impostazioni alchemiche in xorg.conf? riti voodoo? :D

deviltigre
08-09-2005, 10:49
è 1 settimana e mezzo ke provo..
sinceramente la mia vita linuxiana nn vorrei fosse solo installare dei driver o risolvere probl di compilazione .. :cry:

nn va il modulo nel kernel , è inutile..

VegetaSSJ5
08-09-2005, 10:50
hihihihihihiihihihihihihi
come ho già detto.... prova, almeno ti impratichi un po' di linux! ;)
Vegeta: io i moduli li ho caricati (e non) in qualsiasi ordine... stesso risultato! cmq, se dovesse andare... che scheda hai? kernel? xorg? distro? impostazioni alchemiche in xorg.conf? riti voodoo? :D
nel file /etc/modules vedo che non è presente il modulo agp64_agp. devi aggiungerlo appena dopo agpgart e devi cancellare gli altri moduli agp che non ti servono. io ho una debian sid kernel 2.6.12-ck6 xorg 6.8.2 e in xorg.conf non ho nessuna impostazione personalizzata ma è il file gnerato automaticamente dal programma di configurazione.

Sir Wallace
08-09-2005, 10:52
mmmhhh... come conf siamo lì... immagino tu non abbia una 92xx , vero?

Embryo
08-09-2005, 11:38
:confused: :confused: :confused:
quindi tu usi il 3d senza i driver proprietari ati?
io ho dei dubbi.... :)

lo uso anche io il 3d senza driver proprietari! ho una 8500@9100! Non ho dovuto fare assolutamente niente! glxgears mi fa 1900 fps circa che mi consente di giocare bene a quake 3 :Prrr:
Volendo potrei usare i modulini scaricati dal dri, però va più che bene anche così.
Cmq la prox sk video è nvidia! Ati.... :ciapet:

VegetaSSJ5
08-09-2005, 11:42
lo uso anche io il 3d senza driver proprietari! ho una 8500@9100! Non ho dovuto fare assolutamente niente! glxgears mi fa 1900 fps circa che mi consente di giocare bene a quake 3 :Prrr:
Volendo potrei usare i modulini scaricati dal dri, però va più che bene anche così.
Cmq la prox sk video è nvidia! Ati.... :ciapet:
anch'io ho una 8500@9100 ma con i moduli dri, però glxgears mi fa 190 fps (non ho dimenticato uno 0 :eek: ) però supertux mi va benissimo, va a 90fps con accelerazione opengl.

deviltigre
08-09-2005, 11:54
lo uso anche io il 3d senza driver proprietari! ho una 8500@9100! Non ho dovuto fare assolutamente niente! glxgears mi fa 1900 fps circa che mi consente di giocare bene a quake 3 :Prrr:
Volendo potrei usare i modulini scaricati dal dri, però va più che bene anche così.
Cmq la prox sk video è nvidia! Ati.... :ciapet:


prova a giokare a unreal tournament 2003 poi mi sai dire.. :O
se fosse così semplice nessuno installerebbe i driver proprietari...

Embryo
08-09-2005, 11:56
non ci gioco perchè non ce l'ho.
C'è chi dice cmq che i driver proprietari sulle 8500-9100 vadano peggio che quelli liberi. :O

deviltigre
08-09-2005, 11:59
si ma ... nel 2d... l'ho sentita ankio sta storia..

cmq prova la demo di unreal2003 ... :read:
se nn servissero a niente ati e nvidia nn rilascierebbero dei driver..

Sir Wallace
08-09-2005, 12:00
lo uso anche io il 3d senza driver proprietari! ho una 8500@9100! Non ho dovuto fare assolutamente niente! glxgears mi fa 1900 fps circa che mi consente di giocare bene a quake 3 :Prrr:
Volendo potrei usare i modulini scaricati dal dri, però va più che bene anche così.
Cmq la prox sk video è nvidia! Ati.... :ciapet:

AAAAAAAARRRRRRRRRRGGGGGGGGGGGGGGHHHHHHHHHHHHHHHHHHH!
io con il driver radeon del dri (ultima versione da snapshot scaricata) faccio 200fps con glxgear!!!!!!!! :mad: :mad: :muro: :confused:
Embryo... non è che posteresti il tuo xorg.conf???

NA01
08-09-2005, 12:06
prova a giocare a tuxracer!
sbattete ne cesso glxgears!!!!! :sofico:

deviltigre
08-09-2005, 12:06
AAAAAAAARRRRRRRRRRGGGGGGGGGGGGGGHHHHHHHHHHHHHHHHHHH!
io con il driver radeon del dri (ultima versione da snapshot scaricata) faccio 200fps con glxgear!!!!!!!! :mad: :mad: :muro: :confused:
Embryo... non è che posteresti il tuo xorg.conf???


nn capisco xkè parlate d 1 applicazione come quella..
i risultati vedeteli con i gioki "veri" ...
:)

Sir Wallace
08-09-2005, 12:11
beh... io già noto che kde impiega un bel po' a salire... altre app non le ho provate... cmq, visto che son _costretto_ ad usare quelli open, credo proprio che proverò.... :rolleyes:

PS: dove trovo una guida per settare le opzioni nel xorg.conf per i driver open radeon?

idt_winchip
08-09-2005, 12:24
raga non vi fidate molto di glxgears.
tempo fa mi segnava 4000fps con la geffo 4 mx... adesso mi segna 500fps e non so perchè.
cmq l'accellerazione c'è eccome!
Giocando a warcraft 3 con cedega oppure facendo il 3dmark 2000 mi viaggia come le sassate!! :D

deviltigre
08-09-2005, 12:25
raga non vi fidate molto di glxgears.
tempo fa mi segnava 4000fps con la geffo 4 mx... adesso mi segna 500fps e non so perchè.
cmq l'accellerazione c'è eccome!
Giocando a warcraft 3 con cedega oppure facendo il 3dmark 2000 mi viaggia come le sassate!! :D

ve lo ripeto provate 1 vero gioko 3d ... e poi ne riparliamo.. io v consiglio unreal 2003 , c'è pure il demo.. :)

VegetaSSJ5
08-09-2005, 12:47
AAAAAAAARRRRRRRRRRGGGGGGGGGGGGGGHHHHHHHHHHHHHHHHHHH!
io con il driver radeon del dri (ultima versione da snapshot scaricata) faccio 200fps con glxgear!!!!!!!! :mad: :mad: :muro: :confused:
Embryo... non è che posteresti il tuo xorg.conf???
come ho scritto qualche post fa anch'io faccio 190 fps con glxgears, però super tux mi va bene a 90fps con opengl.

Cobra78
08-09-2005, 13:34
raga non vi fidate molto di glxgears.
tempo fa mi segnava 4000fps con la geffo 4 mx... adesso mi segna 500fps e non so perchè.
cmq l'accellerazione c'è eccome!
Giocando a warcraft 3 con cedega oppure facendo il 3dmark 2000 mi viaggia come le sassate!! :D


Ora spiegami un po' come fai a fare il 3D Mark che gira sotto DirectX ???

deviltigre
08-09-2005, 13:36
beh esistono gli emulatori...
cmq nessuno ha risposto al mio invito.. :rolleyes:
raga x provare il 3d pac-man è vecchio :D .. scusate volevo dire glrxgear... :D

NA01
08-09-2005, 13:37
Ora spiegami un po' come fai a fare il 3D Mark che gira sotto DirectX ???
ha parlato di cedega, il suo compito non è altro che tradurre le chiamate delle directx in opengl ;)

ciao

aik
08-09-2005, 15:47
a me non andava il dri perchè i moduli agp vanno caricati prima del modulo della scheda video. nel tuo caso invece di caricare tutti quei chipset che non sono adatti per il tuo pc devi caricare in sequenza questi: agpgart, amd64_agp, fglrx e forse prima del fglrx devi caricare anche il drm ma intanto prova a fare così.

Ho provato a caricare i moduli che avete detto ma non è cambiato nulla :(:( ora proverò ad usare i driver non proprietari e rimettere il dri...non si sa mai, ormai le sto provando tutte !!
certo che questi driver ati fanno proprio skifo eh -.-

Embryo
08-09-2005, 18:19
concordo che glxgears non sia affidabile come test, infatti ho detto che a q3 gioco con tutto a palla senza problemi a 1024x768.
Ho provato il demo di UT2003, farà tra i 15 e i 25 fps... non è sta scheggia, ma la scheda era fuori da un bel pezzo quando uscì (dovrei provarlo anche su windows però, lo farò senz'altro). E' scarso... ma con una 8500 e driver liberi mi sembra più che dignitoso, chissà a mettere i moduli del dri che succede!
In ogni caso... non è che coi proprietari si assisterebbe al miracolo! :D

VegetaSSJ5
08-09-2005, 19:08
io con ut2003 sotto windows ci giocavo dignitosamente a 1024x768 con dettagli medi. ho anch'io una 8500.

Embryo
08-09-2005, 19:37
io con ut2003 sotto windows ci giocavo dignitosamente a 1024x768 con dettagli medi. ho anch'io una 8500.

con dignitosamente che intendi? :stordita:
Cmq domani magari provo il demo anche per windows... così faccio un paragone diretto! ;)

deviltigre
08-09-2005, 19:45
io con ut2003 sotto windows ci giocavo dignitosamente a 1024x768 con dettagli medi. ho anch'io una 8500.


hai installato i driver proprietari ati?
guarda ke unreal 2003 nn vuole 1 gran pc qnd la tua ati va benissimo , penso sia 1 questione di driver.. :)

Acid Queen
08-09-2005, 20:32
Sono riuscito a abilitare il 3d della mia radeon mobility 9600 sulla Debian, dopo vari smadonnamenti!!! :eek: Non ci credo neanche!
Ho prima tolto xfree86 e messo Xorg, poi ho aggiunto nel mio sources.list la repository di Stanchina con drivers fglrx per Xorg su kernel 2.6.8, li ho installati senza problemi, poi poi ho mandato il conf automatico di Xorg e, magicamente, funziona tutto!!

Chebbello!!!

deviltigre
08-09-2005, 20:46
x me 6 1 beato , 6 benedetto col sangue di atena :D
beato te

io invece posso usare solo gnome , xkè kde (dopo aver fatto l'upgrade col sito di athlion) nn andava più come prima..
inoltre nn riuscivo più a installare nessun programma
ho fatto il downgrade e adesso nn va più neanke lui.. :D

aik
08-09-2005, 20:58
Sono riuscito a abilitare il 3d della mia radeon mobility 9600 sulla Debian, dopo vari smadonnamenti!!! Non ci credo neanche!
Ho prima tolto xfree86 e messo Xorg, poi ho aggiunto nel mio sources.list la repository di Stanchina con drivers fglrx per Xorg su kernel 2.6.8, li ho installati senza problemi, poi poi ho mandato il conf automatico di Xorg e, magicamente, funziona tutto!!

come hai messo xorg? usi sid?

Acid Queen
08-09-2005, 21:21
come hai messo xorg? usi sid?

no, ho Sarge, ma con xfree nn funzionava il 3d mentre con xorg si; lo uso per necessità

Iron Pablo
08-09-2005, 21:23
Leggendo questo topic mi son detto: mai provato a giocare sotto linux... Ho scaricato la demo di UT 2004... Installata, la lancio e... Veramente sorpreso!
Una bomba! Va liscio che è un piacere, forse meglio che sotto Winzozz!

Ho una RADEON 9600 XT e driver installati dal repository di Flavio Stanchina... 3D ovviamente a posto!

Ciao a tutti!

deviltigre
08-09-2005, 21:27
Leggendo questo topic mi son detto: mai provato a giocare sotto linux... Ho scaricato la demo di UT 2004... Installata, la lancio e... Veramente sorpreso!
Una bomba! Va liscio che è un piacere, forse meglio che sotto Winzozz!

Ciao a tutti!

beh questo ho dei dubbi..
nn so come sia avvenuto il miracolo , ne tantomeno xkè visto ke abbiamo la stessa distro a me nn compila il kernel e a te si...
mistero della fede..

Embryo
08-09-2005, 21:36
beh questo ho dei dubbi..
nn so come sia avvenuto il miracolo , ne tantomeno xkè visto ke abbiamo la stessa distro a me nn compila il kernel e a te si...
mistero della fede..

Più che miracolo io direi che ti serve ancora un po' di tempo per rodare... nessuno nasce imparato. Anche io ci ho messo tantissimo tempo all'inizio per installare i driver ati... poi quando ho scoperto che per la mia sk erano inclusi nel kernel... :stordita:
Ma hai provato per caso ad usare anche l'installer da 55 MB? io con quel "coso" ho messo i driver su un portatile in 10 minuti.
Cosa intendi con "a me nn compila il kernel"?

deviltigre
08-09-2005, 21:39
io ho usato i pacchetti debian dove li hai presi tu ,
ho seguito le istruzioni , non è questione di rodaggio...

se sono riuscito a far andar il modem , nn vedo xkè nn debba riuscire a mettere sti driver..

va tt bene , ma il kernel non carica il modulo fglrx ...
digito modprobe fgrlx ma dice

FATAL: Error inserting fglrx (/lib/modules/2.6.8-2-386/misc/fglrx.ko): Operation not permitted


nella guida nn era previsto... :(

Embryo
08-09-2005, 22:04
e questo cosa c'entra con la compilazione del kernel?
Di fatto io non ho preso i pacchetti debian, ma ho scaricato l'installer dal sito della ati. Basta eseguire il file e si installano da soli; dopo di che bisogna eseguire fglrxconfig per configurare xorg, ma questo lo saprai di sicuro.
Non mi spiego sto fatto che non carica il modulo... mi spiace non poterti aiutare. :(

deviltigre
08-09-2005, 22:10
io ho provato anke l'installer ma il risultato è lo stesso..
il modulo nn viene caricato e nn so xkè...
abbiamo entrambi debian in fondo.. :cry:

Iron Pablo
08-09-2005, 22:27
beh questo ho dei dubbi..
nn so come sia avvenuto il miracolo , ne tantomeno xkè visto ke abbiamo la stessa distro a me nn compila il kernel e a te si...
mistero della fede..

No scusa... Fammi capire... Se non li sai installare tu, devi fare pure il diffidente?!?! :mbe:
Segui la guida che c'è qui cosicchè tu possa attivare il direct rendering ed evitare di fare il diffidente!
http://xoomer.virgilio.it/flavio.stanchina/debian/fglrx-installer.html

Tiè:
pablo@gandalf:~$ glxinfo
name of display: :0.0
display: :0 screen: 0
direct rendering: Yes
server glx vendor string: SGI
server glx version string: 1.2
server glx extensions:
GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_EXT_import_context
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_EXT_visual_info, GLX_EXT_visual_rating, GLX_EXT_import_context
OpenGL vendor string: ATI Technologies Inc.
OpenGL renderer string: RADEON 9600 XT Generic
OpenGL version string: 1.3.5272 (X4.3.0-8.16.20)

Ancora dubbi????!!!!! :read:

Sir Wallace
09-09-2005, 09:46
Mi spiace, ma deviltigre ha ragione... non è il fatto di diffidenza o no!
Io ho provato almeno 3 o 4 metodi di installazione, ultimo dei quali, quello di stanchina... sempre schermo nero!!! Però, in ogni prova, il modulo fglrx veniva compilato, installato e compilato... comincio a temere che sia la mia 9259 ad avere una reazione allergica con 'sti driver..... :confused:

Cmq... ieri ho rimesso i driver open (radeon - ultima ver scaricata dal sito dri)... l'accelerazione 3d c'è... (per quel che mi dice glxinfo)... kde viene su (coi suoi tempi...), i film dvd e divx girano... però, perchè c'è sempre un però, ci sono 2 GROSSI prob:
1) i film non vanno in full screen: mplayer si apre giustamente in finestra, ma se provo ad andare in full screen, mplayer si allarga, ma il filmato resta un bel quadratino con una cornice tutta nera...
2) qualunque app opengl mi freeza il sistema... e ciò non è bello, e soprattutto mi fa dubitare sull'effettiva installazione dei driver... per intenderci, ho provato penguin racer, il successore di tuxracer...

Qualche suggerimento??

Mi vengono in mente soltanto altre 3 prove da fare:
1) provare i driver precedenti (8.14.13 con relative patch)
2) cambiare kernel (da 2.6.12.5-cko3 a 2.6.11) e gcc (da 4.0.2 a 3.4)
3) riesumare il mio vecchio hd da 5Gb, fare un'installazione pulita pulita (magari di kubuntu) e provare ad installare gli ultimi driver, in modo da escludere un mio prob di sid....

Altro non so.... :( :cry: :cry:

Acid Queen: :ciapet: :ciapet: :ciapet: CHE iNVIDIA!!!! :p ;)

PS: avete provato il tool per oc la scheda? Lo trovate qui (http://www.hasw.net/linux/)

Di seguito, se potete dargli un'occhio, alcuni file... a me non sembrano tanto errati...

xorg.conf

# xorg.conf.dpkg-new (Xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf.dpkg-new manual page.
# (Type "man xorg.conf.dpkg-new" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following commands as root:
#
# cp /etc/X11/xorg.conf.dpkg-new /etc/X11/xorg.conf.dpkg-new.custom
# md5sum /etc/X11/xorg.conf.dpkg-new >/var/lib/xfree86/xorg.conf.dpkg-new.md5sum
# dpkg-reconfigure xserver-xorg

Section "Files"
FontPath "unix/:7100" # local font server
# if the local font server has problems, we can fall back on these
FontPath "/usr/lib/X11/fonts/misc"
# FontPath "/usr/lib/X11/fonts/cyrillic"
FontPath "/usr/lib/X11/fonts/100dpi/:unscaled"
FontPath "/usr/lib/X11/fonts/75dpi/:unscaled"
FontPath "/usr/lib/X11/fonts/Type1"
FontPath "/usr/lib/X11/fonts/CID"
FontPath "/usr/lib/X11/fonts/100dpi"
FontPath "/usr/lib/X11/fonts/75dpi"
EndSection

Section "Module"
Load "bitmap"
Load "dbe"
Load "ddc"
Load "extmod"
Load "freetype"
# Load "GLcore"
Load "glx"
Load "dri"
Load "int10"
Load "record"
Load "type1"
Load "v4l"
Load "vbe"

SubSection "extmod"
Option "omit xfree86-dga"
EndSubSection
EndSection

Section "InputDevice"
Identifier "Generic Keyboard"
Driver "keyboard"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "pc104"
Option "XkbLayout" "us"
EndSection

Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/psaux"
Option "Protocol" "ImPS/2"
Option "Emulate3Buttons" "false"
Option "ZAxisMapping" "4 5"
EndSection

Section "Device"
Identifier "Generic Video Card"
Driver "radeon"
BusID "PCI:1:0:0"
VideoRam 256000
# Option "AGPMode" "4"
# Option "AGPFastWrite" "yes"
Option "EnablePageFlip" "yes"
# Option "UseIternalAGPGART" "no"
# Option "VideoOverlay" "on"
# Option "OpenGLOverlay" "off"
# Option "ForceMonitor" "notv"
# Option "MonitorLayout" "NONE, CRT"
EndSection

Section "Monitor"
Identifier "Generic Monitor"
Option "DPMS"
# HorizSync 28-49
# VertRefresh 43-72
EndSection

Section "Screen"
Identifier "Default Screen"
Device "Generic Video Card"
Monitor "Generic Monitor"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 4
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 8
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 15
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 16
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 24
Modes "1024x768" "800x600" "640x480"
EndSubSection
EndSection

Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
EndSection

Section "DRI"
Mode 0666
EndSection



Xorg.log.0


X Window System Version 6.8.2 (Debian 6.8.2.dfsg.1-6 20050831134411 @squee)
Release Date: 9 February 2005
X Protocol Version 11, Revision 0, Release 6.8.2
Build Operating System: Linux 2.6.12-1-686 i686 [ELF]
Current Operating System: Linux highland 2.6.12.5 #1 Tue Sep 6 21:16:33 CEST 2005 i686
Build Date: 31 August 2005
Before reporting problems, check http://wiki.X.Org
to make sure that you have the latest version.
Module Loader present
OS Kernel: Linux version 2.6.12.5 (root@highland) (gcc version 4.0.1 (Debian 4.0.1-2)) #1 Tue Sep 6 21:16:33 CEST 2005
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Thu Sep 8 23:33:13 2005
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Default Layout"
(**) |-->Screen "Default Screen" (0)
(**) | |-->Monitor "Generic Monitor"
(**) | |-->Device "Generic Video Card"
(**) |-->Input Device "Generic Keyboard"
(**) Option "XkbRules" "xorg"
(**) XKB: rules: "xorg"
(**) Option "XkbModel" "pc104"
(**) XKB: model: "pc104"
(**) Option "XkbLayout" "us"
(**) XKB: layout: "us"
(==) Keyboard: CustomKeycode disabled
(**) |-->Input Device "Configured Mouse"
(WW) The directory "/usr/lib/X11/fonts/CID" does not exist.
Entry deleted from font path.
(**) FontPath set to "unix/:7100,/usr/lib/X11/fonts/misc,/usr/lib/X11/fonts/100dpi/:unscaled,/usr/lib/X11/fonts/75dpi/:unscaled,/usr/lib/X11/fonts/Type1,/usr/lib/X11/fonts/100dpi,/usr/lib/X11/fonts/75dpi"
(==) RgbPath set to "/usr/X11R6/lib/X11/rgb"
(==) ModulePath set to "/usr/X11R6/lib/modules"
(WW) Open APM failed (/dev/apm_bios) (No such file or directory)
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.2
X.Org Video Driver: 0.7
X.Org XInput driver : 0.4
X.Org Server Extension : 0.2
X.Org Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
ABI class: X.Org Video Driver, version 0.7
(--) using VT number 7

(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 1106,0305 card 147b,a401 rev 02 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 1106,8305 card 0000,0000 rev 00 class 06,04,00 hdr 01
(II) PCI: 00:07:0: chip 1106,0686 card 147b,0000 rev 22 class 06,01,00 hdr 80
(II) PCI: 00:07:1: chip 1106,0571 card 1106,0571 rev 10 class 01,01,8a hdr 00
(II) PCI: 00:07:2: chip 1106,3038 card 0925,1234 rev 10 class 0c,03,00 hdr 00
(II) PCI: 00:07:3: chip 1106,3038 card 0925,1234 rev 10 class 0c,03,00 hdr 00
(II) PCI: 00:07:4: chip 1106,3057 card 1106,3057 rev 30 class 06,80,00 hdr 00
(II) PCI: 00:09:0: chip 10ec,8029 card 0000,0000 rev 00 class 02,00,00 hdr 00
(II) PCI: 00:0b:0: chip 1050,0940 card 0000,0000 rev 0b class 02,00,00 hdr 00
(II) PCI: 00:0d:0: chip 1102,0002 card 1102,8065 rev 0a class 04,01,00 hdr 80
(II) PCI: 00:0d:1: chip 1102,7002 card 1102,0020 rev 0a class 09,80,00 hdr 80
(II) PCI: 00:13:0: chip 1103,0004 card 1103,0001 rev 03 class 01,80,00 hdr 00
(II) PCI: 01:00:0: chip 1002,5960 card 174b,0130 rev 01 class 03,00,00 hdr 80
(II) PCI: 01:00:1: chip 1002,5940 card 174b,0131 rev 01 class 03,80,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
[0] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x000c (VGA_EN is set)
(II) Bus 1 I/O range:
[0] -1 0 0x00009000 - 0x000090ff (0x100) IX[B]
[1] -1 0 0x00009400 - 0x000094ff (0x100) IX[B]
[2] -1 0 0x00009800 - 0x000098ff (0x100) IX[B]
[3] -1 0 0x00009c00 - 0x00009cff (0x100) IX[B]
(II) Bus 1 non-prefetchable memory range:
[0] -1 0 0xe8000000 - 0xe9ffffff (0x2000000) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -1 0 0xd8000000 - 0xe7ffffff (0x10000000) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:7:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(--) PCI:*(1:0:0) ATI Technologies Inc unknown chipset (0x5960) rev 1, Mem @ 0xd8000000/27, 0xe9000000/16, I/O @ 0x9000/8
(--) PCI: (1:0:1) ATI Technologies Inc unknown chipset (0x5940) rev 1, Mem @ 0xe0000000/27, 0xe9010000/16
(II) Addressable bus resource ranges are
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
[1] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) OS-reported resource ranges:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[6] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
(II) PCI Memory resource overlap reduced 0xd0000000 from 0xd7ffffff to 0xcfffffff
(II) Active PCI resource ranges:
[0] -1 0 0xd0000000 - 0xcfffffff (0x0) MX[B]O
[1] -1 0 0xe9010000 - 0xe901ffff (0x10000) MX[B](B)
[2] -1 0 0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
[3] -1 0 0xe9000000 - 0xe900ffff (0x10000) MX[B](B)
[4] -1 0 0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
[5] -1 0 0x0000cc00 - 0x0000ccff (0x100) IX[B]
[6] -1 0 0x0000c800 - 0x0000c803 (0x4) IX[B]
[7] -1 0 0x0000c400 - 0x0000c407 (0x8) IX[B]
[8] -1 0 0x0000c000 - 0x0000c003 (0x4) IX[B]
[9] -1 0 0x0000bc00 - 0x0000bc07 (0x8) IX[B]
[10] -1 0 0x0000b800 - 0x0000b807 (0x8) IX[B]
[11] -1 0 0x0000b400 - 0x0000b41f (0x20) IX[B]
[12] -1 0 0x0000b000 - 0x0000b01f (0x20) IX[B]
[13] -1 0 0x0000ac00 - 0x0000ac1f (0x20) IX[B]
[14] -1 0 0x0000a800 - 0x0000a81f (0x20) IX[B]
[15] -1 0 0x0000a400 - 0x0000a41f (0x20) IX[B]
[16] -1 0 0x0000a000 - 0x0000a00f (0x10) IX[B]
[17] -1 0 0x00009000 - 0x000090ff (0x100) IX[B](B)
(II) Active PCI resource ranges after removing overlaps:
[0] -1 0 0xd0000000 - 0xcfffffff (0x0) MX[B]O
[1] -1 0 0xe9010000 - 0xe901ffff (0x10000) MX[B](B)
[2] -1 0 0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
[3] -1 0 0xe9000000 - 0xe900ffff (0x10000) MX[B](B)
[4] -1 0 0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
[5] -1 0 0x0000cc00 - 0x0000ccff (0x100) IX[B]
[6] -1 0 0x0000c800 - 0x0000c803 (0x4) IX[B]
[7] -1 0 0x0000c400 - 0x0000c407 (0x8) IX[B]
[8] -1 0 0x0000c000 - 0x0000c003 (0x4) IX[B]
[9] -1 0 0x0000bc00 - 0x0000bc07 (0x8) IX[B]
[10] -1 0 0x0000b800 - 0x0000b807 (0x8) IX[B]
[11] -1 0 0x0000b400 - 0x0000b41f (0x20) IX[B]
[12] -1 0 0x0000b000 - 0x0000b01f (0x20) IX[B]
[13] -1 0 0x0000ac00 - 0x0000ac1f (0x20) IX[B]
[14] -1 0 0x0000a800 - 0x0000a81f (0x20) IX[B]
[15] -1 0 0x0000a400 - 0x0000a41f (0x20) IX[B]
[16] -1 0 0x0000a000 - 0x0000a00f (0x10) IX[B]
[17] -1 0 0x00009000 - 0x000090ff (0x100) IX[B](B)
(II) OS-reported resource ranges after removing overlaps with PCI:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[6] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
(II) All system resource ranges:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0xd0000000 - 0xcfffffff (0x0) MX[B]O
[6] -1 0 0xe9010000 - 0xe901ffff (0x10000) MX[B](B)
[7] -1 0 0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
[8] -1 0 0xe9000000 - 0xe900ffff (0x10000) MX[B](B)
[9] -1 0 0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
[10] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[11] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[12] -1 0 0x0000cc00 - 0x0000ccff (0x100) IX[B]
[13] -1 0 0x0000c800 - 0x0000c803 (0x4) IX[B]
[14] -1 0 0x0000c400 - 0x0000c407 (0x8) IX[B]
[15] -1 0 0x0000c000 - 0x0000c003 (0x4) IX[B]
[16] -1 0 0x0000bc00 - 0x0000bc07 (0x8) IX[B]
[17] -1 0 0x0000b800 - 0x0000b807 (0x8) IX[B]
[18] -1 0 0x0000b400 - 0x0000b41f (0x20) IX[B]
[19] -1 0 0x0000b000 - 0x0000b01f (0x20) IX[B]
[20] -1 0 0x0000ac00 - 0x0000ac1f (0x20) IX[B]
[21] -1 0 0x0000a800 - 0x0000a81f (0x20) IX[B]
[22] -1 0 0x0000a400 - 0x0000a41f (0x20) IX[B]
[23] -1 0 0x0000a000 - 0x0000a00f (0x10) IX[B]
[24] -1 0 0x00009000 - 0x000090ff (0x100) IX[B](B)
(II) LoadModule: "bitmap"
(II) Reloading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Loading font Bitmap
(II) LoadModule: "dbe"
(II) Loading /usr/X11R6/lib/modules/extensions/libdbe.a
(II) Module dbe: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 0.2
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "ddc"
(II) Loading /usr/X11R6/lib/modules/libddc.a
(II) Module ddc: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
ABI class: X.Org Video Driver, version 0.7
(II) LoadModule: "extmod"
(II) Loading /usr/X11R6/lib/modules/extensions/libextmod.a
(II) Module extmod: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 0.2
(II) Loading extension SHAPE
(II) Loading extension MIT-SUNDRY-NONSTANDARD
(II) Loading extension BIG-REQUESTS
(II) Loading extension SYNC
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XC-MISC
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-Misc
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension FontCache
(II) Loading extension TOG-CUP
(II) Loading extension Extended-Visual-Information
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "freetype"
(II) Loading /usr/X11R6/lib/modules/fonts/libfreetype.a
(II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
compiled for 6.8.2, module version = 2.1.0
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.4
(II) Loading font FreeType
(II) LoadModule: "glx"
(II) Loading /usr/X11R6/lib/modules/extensions/libglx.a
(II) Module glx: vendor="X.Org Foundation"
compiled for 6.8.99.15, module version = 1.0.0
ABI class: X.Org Server Extension, version 0.2
(II) Loading sub module "GLcore"
(II) LoadModule: "GLcore"
(II) Loading /usr/X11R6/lib/modules/extensions/libGLcore.a
Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_clip.o": No symbols found
Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_norm.o": No symbols found
Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_xform.o": No symbols found
(II) Module GLcore: vendor="X.Org Foundation"
compiled for 6.8.99.15, module version = 1.0.0
ABI class: X.Org Server Extension, version 0.2
(II) Loading extension GLX
(II) LoadModule: "dri"
(II) Loading /usr/X11R6/lib/modules/extensions/libdri.a
(II) Module dri: vendor="X.Org Foundation"
compiled for 6.8.99.15, module version = 1.0.0
ABI class: X.Org Server Extension, version 0.2
(II) Loading sub module "drm"
(II) LoadModule: "drm"
(II) Loading /usr/X11R6/lib/modules/linux/libdrm.a
(II) Module drm: vendor="X.Org Foundation"
compiled for 6.8.99.15, module version = 1.0.0
ABI class: X.Org Server Extension, version 0.2
(II) Loading extension XFree86-DRI
(II) LoadModule: "int10"
(II) Loading /usr/X11R6/lib/modules/linux/libint10.a
(II) Module int10: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
ABI class: X.Org Video Driver, version 0.7
(II) LoadModule: "record"
(II) Loading /usr/X11R6/lib/modules/extensions/librecord.a
(II) Module record: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.13.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 0.2
(II) Loading extension RECORD
(II) LoadModule: "type1"
(II) Loading /usr/X11R6/lib/modules/fonts/libtype1.a
(II) Module type1: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.2
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Type1
(II) Loading font CID
(II) LoadModule: "v4l"
(II) Loading /usr/X11R6/lib/modules/drivers/linux/v4l_drv.o
(II) Module v4l: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 0.0.1
ABI class: X.Org Video Driver, version 0.7
(II) LoadModule: "vbe"
(II) Loading /usr/X11R6/lib/modules/libvbe.a
(II) Module vbe: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.1.0
ABI class: X.Org Video Driver, version 0.7
(II) LoadModule: "extmod"
(II) Reloading /usr/X11R6/lib/modules/extensions/libextmod.a
(II) Loading extension SHAPE
(II) Loading extension MIT-SUNDRY-NONSTANDARD
(II) Loading extension BIG-REQUESTS
(II) Loading extension SYNC
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XC-MISC
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-Misc
(II) Loading extension DPMS
(II) Loading extension FontCache
(II) Loading extension TOG-CUP
(II) Loading extension Extended-Visual-Information
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "radeon"
(II) Loading /usr/X11R6/lib/modules/drivers/radeon_drv.o
(II) Module radeon: vendor="X.Org Foundation"
compiled for 6.8.99.15, module version = 4.0.1
Module class: X.Org Video Driver
ABI class: X.Org Video Driver, version 0.7
(II) LoadModule: "ati"
(II) Loading /usr/X11R6/lib/modules/drivers/ati_drv.o
(II) Module ati: vendor="X.Org Foundation"
compiled for 6.8.99.15, module version = 6.5.6
Module class: X.Org Video Driver
ABI class: X.Org Video Driver, version 0.7
(II) LoadModule: "keyboard"
(II) Loading /usr/X11R6/lib/modules/input/keyboard_drv.o
(II) Module keyboard: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 0.4
(II) LoadModule: "mouse"
(II) Loading /usr/X11R6/lib/modules/input/mouse_drv.o
(II) Module mouse: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 0.4
(II) v4l driver for Video4Linux
(II) ATI: ATI driver (version 6.5.6) for chipsets: ati, ativga
(II) R128: Driver for ATI Rage 128 chipsets:
ATI Rage 128 Mobility M3 LE (PCI), ATI Rage 128 Mobility M3 LF (AGP),
ATI Rage 128 Mobility M4 MF (AGP), ATI Rage 128 Mobility M4 ML (AGP),
ATI Rage 128 Pro GL PA (PCI/AGP), ATI Rage 128 Pro GL PB (PCI/AGP),
ATI Rage 128 Pro GL PC (PCI/AGP), ATI Rage 128 Pro GL PD (PCI),
ATI Rage 128 Pro GL PE (PCI/AGP), ATI Rage 128 Pro GL PF (AGP),
ATI Rage 128 Pro VR PG (PCI/AGP), ATI Rage 128 Pro VR PH (PCI/AGP),
ATI Rage 128 Pro VR PI (PCI/AGP), ATI Rage 128 Pro VR PJ (PCI/AGP),
ATI Rage 128 Pro VR PK (PCI/AGP), ATI Rage 128 Pro VR PL (PCI/AGP),
ATI Rage 128 Pro VR PM (PCI/AGP), ATI Rage 128 Pro VR PN (PCI/AGP),
ATI Rage 128 Pro VR PO (PCI/AGP), ATI Rage 128 Pro VR PP (PCI),
ATI Rage 128 Pro VR PQ (PCI/AGP), ATI Rage 128 Pro VR PR (PCI),
ATI Rage 128 Pro VR PS (PCI/AGP), ATI Rage 128 Pro VR PT (PCI/AGP),
ATI Rage 128 Pro VR PU (PCI/AGP), ATI Rage 128 Pro VR PV (PCI/AGP),
ATI Rage 128 Pro VR PW (PCI/AGP), ATI Rage 128 Pro VR PX (PCI/AGP),
ATI Rage 128 GL RE (PCI), ATI Rage 128 GL RF (AGP),
ATI Rage 128 RG (AGP), ATI Rage 128 VR RK (PCI),
ATI Rage 128 VR RL (AGP), ATI Rage 128 4X SE (PCI/AGP),
ATI Rage 128 4X SF (PCI/AGP), ATI Rage 128 4X SG (PCI/AGP),
ATI Rage 128 4X SH (PCI/AGP), ATI Rage 128 4X SK (PCI/AGP),
ATI Rage 128 4X SL (PCI/AGP), ATI Rage 128 4X SM (AGP),
ATI Rage 128 4X SN (PCI/AGP), ATI Rage 128 Pro ULTRA TF (AGP),
ATI Rage 128 Pro ULTRA TL (AGP), ATI Rage 128 Pro ULTRA TR (AGP),
ATI Rage 128 Pro ULTRA TS (AGP?), ATI Rage 128 Pro ULTRA TT (AGP?),
ATI Rage 128 Pro ULTRA TU (AGP?)
(II) RADEON: Driver for ATI Radeon chipsets: ATI Radeon QD (AGP),
ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
ATI Radeon VE/7000 QY (AGP/PCI), ATI Radeon VE/7000 QZ (AGP/PCI),
ATI ES1000 515E (PCI), ATI ES1000 5969 (PCI),
ATI Radeon Mobility M7 LW (AGP),
ATI Mobility FireGL 7800 M7 LX (AGP),
ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
ATI Radeon IGP320 (A3) 4136, ATI Radeon IGP320M (U1) 4336,
ATI Radeon IGP330/340/350 (A4) 4137,
ATI Radeon IGP330M/340M/350M (U2) 4337,
ATI Radeon 7000 IGP (A4+) 4237, ATI Radeon Mobility 7000 IGP 4437,
ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
ATI Radeon 9100 QM (AGP), ATI Radeon 8500 AIW BB (AGP),
ATI Radeon 8500 AIW BC (AGP), ATI Radeon 7500 QW (AGP/PCI),
ATI Radeon 7500 QX (AGP/PCI), ATI Radeon 9000/PRO If (AGP/PCI),
ATI Radeon 9000 Ig (AGP/PCI), ATI FireGL Mobility 9000 (M9) Ld (AGP),
ATI Radeon Mobility 9000 (M9) Lf (AGP),
ATI Radeon Mobility 9000 (M9) Lg (AGP),
ATI Radeon 9100 IGP (A5) 5834,
ATI Radeon Mobility 9100 IGP (U3) 5835, ATI Radeon 9100 PRO IGP 7834,
ATI Radeon Mobility 9200 IGP 7835, ATI Radeon 9200PRO 5960 (AGP),
ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
ATI Radeon Mobility 9200 (M9+) 5C63 (AGP), ATI Radeon 9500 AD (AGP),
ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
ATI FireGL Z1 AG (AGP), ATI Radeon 9700 Pro ND (AGP),
ATI Radeon 9700/9500Pro NE (AGP), ATI Radeon 9700 NF (AGP),
ATI FireGL X1 NG (AGP), ATI Radeon 9600 AP (AGP),
ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP),
ATI FireGL RV360 AV (AGP),
ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
ATI Radeon Mobility 9600 (M10) NQ (AGP),
ATI Radeon Mobility 9600 (M11) NR (AGP),
ATI Radeon Mobility 9600 (M10) NS (AGP),
ATI FireGL Mobility T2 (M10) NT (AGP),
ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon 9650,
ATI Radeon 9800SE AH (AGP), ATI Radeon 9800 AI (AGP),
ATI Radeon 9800 AJ (AGP), ATI FireGL X2 AK (AGP),
ATI Radeon 9800PRO NH (AGP), ATI Radeon 9800 NI (AGP),
ATI FireGL X2 NK (AGP), ATI Radeon 9800XT NJ (AGP),
ATI Radeon X600 (RV380) 3E50 (PCIE),
ATI FireGL V3200 (RV380) 3E54 (PCIE),
ATI Radeon Mobility X600 (M24) 3150 (PCIE),
ATI FireGL M24 GL 3154 (PCIE), ATI Radeon X300 (RV370) 5B60 (PCIE),
ATI Radeon X600 (RV370) 5B62 (PCIE),
ATI FireGL V3100 (RV370) 5B64 (PCIE),
ATI FireGL D1100 (RV370) 5B65 (PCIE),
ATI Radeon Mobility M300 (M22) 5460 (PCIE),
ATI FireGL M22 GL 5464 (PCIE), ATI Radeon XPRESS 200 5A41 (PCIE),
ATI Radeon XPRESS 200M 5A42 (PCIE),
ATI Radeon XPRESS 200 5A61 (PCIE),
ATI Radeon XPRESS 200M 5A62 (PCIE),
ATI Radeon XPRESS 200 5954 (PCIE),
ATI Radeon XPRESS 200M 5955 (PCIE),
ATI Radeon XPRESS 200 5974 (PCIE),
ATI Radeon XPRESS 200M 5975 (PCIE), ATI FireGL V5000 (RV410) (PCIE),
ATI Mobility FireGL V5000 (M26) (PCIE),
ATI Mobility FireGL V5000 (M26) (PCIE),
ATI Mobility Radeon X700 (M26) (PCIE),
ATI Mobility Radeon X700 (M26) (PCIE),
ATI Radeon X700 PRO (RV410) (PCIE),
ATI Radeon X700 XT (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 SE (RV410) (PCIE),
ATI Radeon X800 (R420) JH (AGP), ATI Radeon X800PRO (R420) JI (AGP),
ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
ATI Radeon Mobility 9800 (M18) JN (AGP),
ATI Radeon X800XT (R420) JP (AGP), ATI Radeon X800 SE (R420) (AGP),
ATI Radeon X800 (R423) UH (PCIE),
ATI Radeon X800PRO (R423) UI (PCIE),
ATI Radeon X800LE (R423) UJ (PCIE),
ATI Radeon X800SE (R423) UK (PCIE),
ATI FireGL V7200 (R423) UQ (PCIE), ATI FireGL V5100 (R423) UR (PCIE),
ATI FireGL V7100 (R423) UT (PCIE),
ATI Radeon X800XT (R423) 5D57 (PCIE), ATI FireGL V7100 (R423) (PCIE),
ATI Mobility FireGL V5100 (M28) (PCIE),
ATI Mobility Radeon X800 (M28) (PCIE),
ATI Mobility Radeon X800 XT (M28) (PCIE),
ATI Radeon X800 (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 XTP (R430) (PCIE),
ATI Radeon X850 5D4C (PCIE), ATI Radeon FireGL (R480) GL 5D50 (PCIE),
ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
ATI Radeon X850 XT (R480) (PCIE),
ATI Radeon X850 XT PE (R480) (PCIE),
ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP)
(II) Primary Device is: PCI 01:00:0
(WW) RADEON: No matching Device section for instance (BusID PCI:1:0:1) found
(--) Chipset ATI Radeon 9200PRO 5960 (AGP) found
(II) resource ranges after xf86ClaimFixedResources() call:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0xd0000000 - 0xcfffffff (0x0) MX[B]O
[6] -1 0 0xe9010000 - 0xe901ffff (0x10000) MX[B](B)
[7] -1 0 0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
[8] -1 0 0xe9000000 - 0xe900ffff (0x10000) MX[B](B)
[9] -1 0 0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
[10] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[11] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[12] -1 0 0x0000cc00 - 0x0000ccff (0x100) IX[B]
[13] -1 0 0x0000c800 - 0x0000c803 (0x4) IX[B]
[14] -1 0 0x0000c400 - 0x0000c407 (0x8) IX[B]
[15] -1 0 0x0000c000 - 0x0000c003 (0x4) IX[B]
[16] -1 0 0x0000bc00 - 0x0000bc07 (0x8) IX[B]
[17] -1 0 0x0000b800 - 0x0000b807 (0x8) IX[B]
[18] -1 0 0x0000b400 - 0x0000b41f (0x20) IX[B]
[19] -1 0 0x0000b000 - 0x0000b01f (0x20) IX[B]
[20] -1 0 0x0000ac00 - 0x0000ac1f (0x20) IX[B]
[21] -1 0 0x0000a800 - 0x0000a81f (0x20) IX[B]
[22] -1 0 0x0000a400 - 0x0000a41f (0x20) IX[B]
[23] -1 0 0x0000a000 - 0x0000a00f (0x10) IX[B]
[24] -1 0 0x00009000 - 0x000090ff (0x100) IX[B](B)
(II) Loading sub module "radeon"
(II) LoadModule: "radeon"
(II) Reloading /usr/X11R6/lib/modules/drivers/radeon_drv.o
(II) resource ranges after probing:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0xd0000000 - 0xcfffffff (0x0) MX[B]O
[6] -1 0 0xe9010000 - 0xe901ffff (0x10000) MX[B](B)
[7] -1 0 0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
[8] -1 0 0xe9000000 - 0xe900ffff (0x10000) MX[B](B)
[9] -1 0 0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
[10] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B]
[11] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B]
[12] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B]
[13] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[14] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[15] -1 0 0x0000cc00 - 0x0000ccff (0x100) IX[B]
[16] -1 0 0x0000c800 - 0x0000c803 (0x4) IX[B]
[17] -1 0 0x0000c400 - 0x0000c407 (0x8) IX[B]
[18] -1 0 0x0000c000 - 0x0000c003 (0x4) IX[B]
[19] -1 0 0x0000bc00 - 0x0000bc07 (0x8) IX[B]
[20] -1 0 0x0000b800 - 0x0000b807 (0x8) IX[B]
[21] -1 0 0x0000b400 - 0x0000b41f (0x20) IX[B]
[22] -1 0 0x0000b000 - 0x0000b01f (0x20) IX[B]
[23] -1 0 0x0000ac00 - 0x0000ac1f (0x20) IX[B]
[24] -1 0 0x0000a800 - 0x0000a81f (0x20) IX[B]
[25] -1 0 0x0000a400 - 0x0000a41f (0x20) IX[B]
[26] -1 0 0x0000a000 - 0x0000a00f (0x10) IX[B]
[27] -1 0 0x00009000 - 0x000090ff (0x100) IX[B](B)
[28] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B]
[29] 0 0 0x000003c0 - 0x000003df (0x20) IS[B]
(II) Setting vga for screen 0.
(II) RADEON(0): MMIO registers at 0xe9000000
(II) RADEON(0): PCI bus 1 card 0 func 0
(**) RADEON(0): Depth 24, (--) framebuffer bpp 32
(II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
(==) RADEON(0): Default visual is TrueColor
(**) RADEON(0): Option "EnablePageFlip" "yes"
(II) Loading sub module "vgahw"
(II) LoadModule: "vgahw"
(II) Loading /usr/X11R6/lib/modules/libvgahw.a
(II) Module vgahw: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 0.1.0
ABI class: X.Org Video Driver, version 0.7
(II) RADEON(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
(==) RADEON(0): RGB weight 888
(II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Reloading /usr/X11R6/lib/modules/linux/libint10.a
(II) RADEON(0): initializing int10
(II) RADEON(0): Primary V_BIOS segment is: 0xc000
(--) RADEON(0): Chipset: "ATI Radeon 9200PRO 5960 (AGP)" (ChipID = 0x5960)
(--) RADEON(0): Linear framebuffer at 0xd8000000
(II) RADEON(0): Video RAM override, using 256000 kB instead of 131072 kB
(**) RADEON(0): VideoRAM: 256000 kByte (128 bit DDR SDRAM)
(II) RADEON(0): AGP card detected
(II) RADEON(0): Color tiling enabled by default
(II) Loading sub module "ddc"
(II) LoadModule: "ddc"
(II) Reloading /usr/X11R6/lib/modules/libddc.a
(II) Loading sub module "i2c"
(II) LoadModule: "i2c"
(II) Loading /usr/X11R6/lib/modules/libi2c.a
(II) Module i2c: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.2.0
ABI class: X.Org Video Driver, version 0.7
(II) RADEON(0): I2C bus "DDC" initialized.
(II) RADEON(0): Legacy BIOS detected
(II) RADEON(0): Connector0: DDCType-2, DACType-1, TMDSType-0, ConnectorType-3
(II) RADEON(0): Connector1: DDCType-3, DACType-0, TMDSType--1, ConnectorType-2
(II) RADEON(0): I2C device "DDC:ddc2" registered at address 0xA0.
(II) RADEON(0): I2C device "DDC:ddc2" removed.
(II) RADEON(0): I2C device "DDC:ddc2" registered at address 0xA0.
(II) RADEON(0): I2C device "DDC:ddc2" removed.
(II) RADEON(0): I2C device "DDC:ddc2" registered at address 0xA0.
(II) RADEON(0): I2C device "DDC:ddc2" removed.
(II) RADEON(0): DDC Type: 2, Detected Type: 0
(II) RADEON(0): I2C device "DDC:ddc2" registered at address 0xA0.
(II) RADEON(0): I2C device "DDC:ddc2" removed.
(II) RADEON(0): DDC Type: 3, Detected Type: 1
(II) RADEON(0): EDID data from the display on port 2-----------------------
(II) RADEON(0): Manufacturer: CTX Model: 7694 Serial#: 0
(II) RADEON(0): Year: 1997 Week: 0
(II) RADEON(0): EDID Version: 1.1
(II) RADEON(0): Analog Display Input, Input Voltage Level: 0.700/0.300 V
(II) RADEON(0): Signal levels configurable
(II) RADEON(0): Sync: Separate CompositeSerration on. V.Sync Pulse req. if CompSync or SyncOnGreen
(II) RADEON(0): Max H-Image Size [cm]: horiz.: 33 vert.: 25
(II) RADEON(0): Gamma: 2.10
(II) RADEON(0): DPMS capabilities: StandBy Suspend Off; RGB/Color Display
(II) RADEON(0): redX: 0.627 redY: 0.337 greenX: 0.277 greenY: 0.588
(II) RADEON(0): blueX: 0.143 blueY: 0.062 whiteX: 0.277 whiteY: 0.312
(II) RADEON(0): Supported VESA Video Modes:
(II) RADEON(0): 720x400@70Hz
(II) RADEON(0): 640x480@60Hz
(II) RADEON(0): 640x480@67Hz
(II) RADEON(0): 640x480@72Hz
(II) RADEON(0): 640x480@75Hz
(II) RADEON(0): 800x600@60Hz
(II) RADEON(0): 800x600@72Hz
(II) RADEON(0): 800x600@75Hz
(II) RADEON(0): 832x624@75Hz
(II) RADEON(0): 1024x768@87Hz (interlaced)
(II) RADEON(0): 1024x768@60Hz
(II) RADEON(0): 1024x768@70Hz
(II) RADEON(0): 1024x768@75Hz
(II) RADEON(0): 1152x870@75Hz
(II) RADEON(0): Manufacturer's mask: 0
(II) RADEON(0): Supported Future Video Modes:
(II) RADEON(0): #0: hsize: 640 vsize 480 refresh: 120 vid: 31793
(II) RADEON(0): #1: hsize: 800 vsize 600 refresh: 100 vid: 26693
(II) RADEON(0): #2: hsize: 1024 vsize 768 refresh: 85 vid: 22881
(II) RADEON(0): #3: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
(II) RADEON(0): Supported additional Video Mode:
(II) RADEON(0): clock: 25.2 MHz Image Size: 310 x 232 mm
(II) RADEON(0): h_active: 640 h_sync: 656 h_sync_end 752 h_blank_end 800 h_border: 0
(II) RADEON(0): v_active: 350 v_sync: 387 v_sync_end 389 v_blanking: 449 v_border: 0
(II) RADEON(0): Supported additional Video Mode:
(II) RADEON(0): clock: 36.0 MHz Image Size: 310 x 232 mm
(II) RADEON(0): h_active: 640 h_sync: 672 h_sync_end 720 h_blank_end 832 h_border: 0
(II) RADEON(0): v_active: 480 v_sync: 481 v_sync_end 484 v_blanking: 509 v_border: 0
(II) RADEON(0): Supported additional Video Mode:
(II) RADEON(0): clock: 56.2 MHz Image Size: 310 x 232 mm
(II) RADEON(0): h_active: 800 h_sync: 832 h_sync_end 896 h_blank_end 1048 h_border: 0
(II) RADEON(0): v_active: 600 v_sync: 601 v_sync_end 604 v_blanking: 631 v_border: 0
(II) RADEON(0): Supported additional Video Mode:
(II) RADEON(0): clock: 94.5 MHz Image Size: 310 x 232 mm
(II) RADEON(0): h_active: 1024 h_sync: 1072 h_sync_end 1168 h_blank_end 1376 h_border: 0
(II) RADEON(0): v_active: 768 v_sync: 769 v_sync_end 772 v_blanking: 808 v_border: 0
(II) RADEON(0):
(II) RADEON(0): Primary:
Monitor -- CRT
Connector -- VGA
DAC Type -- Primary
TMDS Type -- NONE
DDC Type -- VGA_DDC
(II) RADEON(0): Secondary:
Monitor -- NONE
Connector -- DVI-I
DAC Type -- TVDAC/ExtDAC
TMDS Type -- Internal
DDC Type -- DVI_DDC
(II) RADEON(0): PLL parameters: rf=2700 rd=12 min=20000 max=40000; xclk=20000
(WW) RADEON(0): Failed to detect secondary monitor, MergedFB/Clone mode disabled
(==) RADEON(0): Using gamma correction (1.0, 1.0, 1.0)
(II) RADEON(0): Validating modes on Primary head ---------
(II) RADEON(0): Generic Monitor: Using hsync value of 37.50 kHz
(II) RADEON(0): Generic Monitor: Using hsync value of 37.90 kHz
(II) RADEON(0): Generic Monitor: Using hsync value of 46.90 kHz
(II) RADEON(0): Generic Monitor: Using hsync value of 48.10 kHz
(II) RADEON(0): Generic Monitor: Using hsync value of 56.50 kHz
(II) RADEON(0): Generic Monitor: Using hsync value of 60.00 kHz
(II) RADEON(0): Generic Monitor: Using vrefresh value of 60.00 Hz
(II) RADEON(0): Generic Monitor: Using vrefresh value of 70.00 Hz
(II) RADEON(0): Generic Monitor: Using vrefresh value of 72.00 Hz
(II) RADEON(0): Generic Monitor: Using vrefresh value of 75.00 Hz
(II) RADEON(0): Clock range: 20.00 to 400.00 MHz
(II) RADEON(0): Not using default mode "640x350" (vrefresh out of range)
(II) RADEON(0): Not using default mode "320x175" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "640x400" (vrefresh out of range)
(II) RADEON(0): Not using default mode "320x200" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "720x400" (vrefresh out of range)
(II) RADEON(0): Not using default mode "360x200" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "640x480" (hsync out of range)
(II) RADEON(0): Not using default mode "320x240" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "640x480" (vrefresh out of range)
(II) RADEON(0): Not using default mode "320x240" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "320x240" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "640x480" (hsync out of range)
(II) RADEON(0): Not using default mode "320x240" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "800x600" (hsync out of range)
(II) RADEON(0): Not using default mode "400x300" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "800x600" (hsync out of range)
(II) RADEON(0): Not using default mode "400x300" (hsync out of range)
(II) RADEON(0): Not using default mode "1024x768" (hsync out of range)
(II) RADEON(0): Not using default mode "512x384" (hsync out of range)
(II) RADEON(0): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1024x768" (hsync out of range)
(II) RADEON(0): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1152x864" (hsync out of range)
(II) RADEON(0): Not using default mode "576x432" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "640x480" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1280x960" (hsync out of range)
(II) RADEON(0): Not using default mode "640x480" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1280x1024" (hsync out of range)
(II) RADEON(0): Not using default mode "640x512" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1280x1024" (hsync out of range)
(II) RADEON(0): Not using default mode "640x512" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1280x1024" (hsync out of range)
(II) RADEON(0): Not using default mode "640x512" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1600x1200" (hsync out of range)
(II) RADEON(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1600x1200" (hsync out of range)
(II) RADEON(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1600x1200" (hsync out of range)
(II) RADEON(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1600x1200" (hsync out of range)
(II) RADEON(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1600x1200" (hsync out of range)
(II) RADEON(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1792x1344" (hsync out of range)
(II) RADEON(0): Not using default mode "896x672" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1792x1344" (hsync out of range)
(II) RADEON(0): Not using default mode "896x672" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1856x1392" (hsync out of range)
(II) RADEON(0): Not using default mode "928x696" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1856x1392" (hsync out of range)
(II) RADEON(0): Not using default mode "928x696" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1920x1440" (hsync out of range)
(II) RADEON(0): Not using default mode "960x720" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1920x1440" (hsync out of range)
(II) RADEON(0): Not using default mode "960x720" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "832x624" (hsync out of range)
(II) RADEON(0): Not using default mode "416x312" (hsync out of range)
(II) RADEON(0): Not using default mode "640x384" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1280x800" (hsync out of range)
(II) RADEON(0): Not using default mode "640x400" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1152x768" (hsync out of range)
(II) RADEON(0): Not using default mode "576x384" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1152x864" (hsync out of range)
(II) RADEON(0): Not using default mode "576x432" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1400x1050" (hsync out of range)
(II) RADEON(0): Not using default mode "700x525" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1400x1050" (hsync out of range)
(II) RADEON(0): Not using default mode "700x525" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1400x1050" (hsync out of range)
(II) RADEON(0): Not using default mode "700x525" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1400x1050" (hsync out of range)
(II) RADEON(0): Not using default mode "700x525" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "720x450" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1600x1024" (hsync out of range)
(II) RADEON(0): Not using default mode "800x512" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1680x1050" (hsync out of range)
(II) RADEON(0): Not using default mode "840x525" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1920x1200" (hsync out of range)
(II) RADEON(0): Not using default mode "960x600" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1920x1200" (hsync out of range)
(II) RADEON(0): Not using default mode "960x600" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1920x1440" (hsync out of range)
(II) RADEON(0): Not using default mode "960x720" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "2048x1536" (hsync out of range)
(II) RADEON(0): Not using default mode "1024x768" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "2048x1536" (hsync out of range)
(II) RADEON(0): Not using default mode "1024x768" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "2048x1536" (hsync out of range)
(II) RADEON(0): Not using default mode "1024x768" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1440x900" (width too large for virtual size)
(II) RADEON(0): Not using default mode "1280x960" (width too large for virtual size)
(II) RADEON(0): Not using default mode "1280x768" (width too large for virtual size)
(--) RADEON(0): Virtual size is 1024x768 (pitch 1024)
(**) RADEON(0): *Default mode "1024x768": 78.8 MHz, 60.1 kHz, 75.1 Hz
(II) RADEON(0): Modeline "1024x768" 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync
(**) RADEON(0): *Default mode "800x600": 49.5 MHz, 46.9 kHz, 75.0 Hz
(II) RADEON(0): Modeline "800x600" 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync
(**) RADEON(0): *Default mode "640x480": 31.5 MHz, 37.5 kHz, 75.0 Hz
(II) RADEON(0): Modeline "640x480" 31.50 640 656 720 840 480 481 484 500 -hsync -vsync
(**) RADEON(0): Default mode "1024x768": 75.0 MHz, 56.5 kHz, 70.1 Hz
(II) RADEON(0): Modeline "1024x768" 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync
(**) RADEON(0): Default mode "1024x768": 65.0 MHz, 48.4 kHz, 60.0 Hz
(II) RADEON(0): Modeline "1024x768" 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync
(**) RADEON(0): Default mode "800x600": 50.0 MHz, 48.1 kHz, 72.2 Hz
(II) RADEON(0): Modeline "800x600" 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync
(**) RADEON(0): Default mode "800x600": 40.0 MHz, 37.9 kHz, 60.3 Hz
(II) RADEON(0): Modeline "800x600" 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync
(**) RADEON(0): Default mode "400x300": 24.8 MHz, 46.9 kHz, 75.1 Hz (D)
(II) RADEON(0): Modeline "400x300" 24.75 400 408 448 528 300 300 302 312 doublescan +hsync +vsync
(**) RADEON(0): Default mode "400x300": 25.0 MHz, 48.1 kHz, 72.2 Hz (D)
(II) RADEON(0): Modeline "400x300" 25.00 400 428 488 520 300 318 321 333 doublescan +hsync +vsync
(**) RADEON(0): Default mode "400x300": 20.0 MHz, 37.9 kHz, 60.3 Hz (D)
(II) RADEON(0): Modeline "400x300" 20.00 400 420 484 528 300 300 302 314 doublescan +hsync +vsync
(++) RADEON(0): DPI set to (100, 100)
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/X11R6/lib/modules/libfb.a
Skipping "/usr/X11R6/lib/modules/libfb.a:fbmmx.o": No symbols found
(II) Module fb: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
ABI class: X.Org ANSI C Emulation, version 0.2
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Loading /usr/X11R6/lib/modules/libramdac.a
(II) Module ramdac: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 0.1.0
ABI class: X.Org Video Driver, version 0.7
(II) Loading sub module "xaa"
(II) LoadModule: "xaa"
(II) Loading /usr/X11R6/lib/modules/libxaa.a
(II) Module xaa: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.2.0
ABI class: X.Org Video Driver, version 0.7
(II) RADEON(0): AGP Fast Write disabled by default
(II) Loading sub module "shadowfb"
(II) LoadModule: "shadowfb"
(II) Loading /usr/X11R6/lib/modules/libshadowfb.a
(II) Module shadowfb: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
ABI class: X.Org ANSI C Emulation, version 0.2
(II) RADEON(0): Page flipping enabled
(II) RADEON(0): Will try to use DMA for Xv image transfers
(II) RADEON(0): No MM_TABLE found - assuming CARD is not TV-in capable.
(!!) RADEON(0): For information on using the multimedia capabilities
of this adapter, please see http://gatos.sf.net.
(--) Depth 24 pixmap format is 32 bpp
(II) do I need RAC? No, I don't.
(II) resource ranges after preInit:
[0] 0 0 0xe9000000 - 0xe900ffff (0x10000) MX[B]
[1] 0 0 0xd8000000 - 0xdfffffff (0x8000000) MX[B]
[2] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[3] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[4] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[5] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[6] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[7] -1 0 0xd0000000 - 0xcfffffff (0x0) MX[B]O
[8] -1 0 0xe9010000 - 0xe901ffff (0x10000) MX[B](B)
[9] -1 0 0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
[10] -1 0 0xe9000000 - 0xe900ffff (0x10000) MX[B](B)
[11] -1 0 0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
[12] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B](OprU)
[13] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B](OprU)
[14] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B](OprU)
[15] 0 0 0x00009000 - 0x000090ff (0x100) IX[B]
[16] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[17] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[18] -1 0 0x0000cc00 - 0x0000ccff (0x100) IX[B]
[19] -1 0 0x0000c800 - 0x0000c803 (0x4) IX[B]
[20] -1 0 0x0000c400 - 0x0000c407 (0x8) IX[B]
[21] -1 0 0x0000c000 - 0x0000c003 (0x4) IX[B]
[22] -1 0 0x0000bc00 - 0x0000bc07 (0x8) IX[B]
[23] -1 0 0x0000b800 - 0x0000b807 (0x8) IX[B]
[24] -1 0 0x0000b400 - 0x0000b41f (0x20) IX[B]
[25] -1 0 0x0000b000 - 0x0000b01f (0x20) IX[B]
[26] -1 0 0x0000ac00 - 0x0000ac1f (0x20) IX[B]
[27] -1 0 0x0000a800 - 0x0000a81f (0x20) IX[B]
[28] -1 0 0x0000a400 - 0x0000a41f (0x20) IX[B]
[29] -1 0 0x0000a000 - 0x0000a00f (0x10) IX[B]
[30] -1 0 0x00009000 - 0x000090ff (0x100) IX[B](B)
[31] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B](OprU)
[32] 0 0 0x000003c0 - 0x000003df (0x20) IS[B](OprU)
(II) RADEON(0): Splitting WC range: base: 0xd8000000, size: 0xfa00000
(II) RADEON(0): Splitting WC range: base: 0xe0000000, size: 0x7a00000
(II) RADEON(0): Splitting WC range: base: 0xe4000000, size: 0x3a00000
(II) RADEON(0): Splitting WC range: base: 0xe6000000, size: 0x1a00000
(II) RADEON(0): Splitting WC range: base: 0xe7000000, size: 0xa00000
(==) RADEON(0): Write-combining range (0xe7800000,0x200000)
(==) RADEON(0): Write-combining range (0xe7000000,0xa00000)
(==) RADEON(0): Write-combining range (0xe6000000,0x1a00000)
(==) RADEON(0): Write-combining range (0xe4000000,0x3a00000)
(==) RADEON(0): Write-combining range (0xe0000000,0x7a00000)
(WW) RADEON(0): Failed to set up write-combining range (0xd8000000,0xfa00000)
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is -1, (Unknown error 999)
drmOpenDevice: open result is -1, (Unknown error 999)
drmOpenDevice: Open failed
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is -1, (Unknown error 999)
drmOpenDevice: open result is -1, (Unknown error 999)
drmOpenDevice: Open failed
drmOpenByBusid: Searching for BusID pci:0000:01:00.0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 7, (OK)
drmOpenByBusid: drmOpenMinor returns 7
drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
(II) RADEON(0): [drm] loaded kernel module for "radeon" driver
(II) RADEON(0): [drm] DRM interface version 1.2
(II) RADEON(0): [drm] created "radeon" driver at busid "pci:0000:01:00.0"
(II) RADEON(0): [drm] added 8192 byte SAREA at 0xe1447000
(II) RADEON(0): [drm] mapped SAREA 0xe1447000 to 0xa82c3000
(II) RADEON(0): [drm] framebuffer handle = 0xd8000000
(II) RADEON(0): [drm] added 1 reserved context for kernel
(II) RADEON(0): [agp] Mode 0x1f000201 [AGP 0x1106/0x0305; Card 0x1002/0x5960]
(II) RADEON(0): [agp] 8192 kB allocated with handle 0x00000001
(II) RADEON(0): [agp] ring handle = 0xd0000000
(II) RADEON(0): [agp] Ring mapped at 0xa81c2000
(II) RADEON(0): [agp] ring read ptr handle = 0xd0101000
(II) RADEON(0): [agp] Ring read ptr mapped at 0xa81c1000
(II) RADEON(0): [agp] vertex/indirect buffers handle = 0xd0102000
(II) RADEON(0): [agp] Vertex/indirect buffers mapped at 0xa7fc1000
(II) RADEON(0): [agp] GART texture map handle = 0xd0302000
(II) RADEON(0): [agp] GART Texture map mapped at 0xa7ae1000
(II) RADEON(0): [drm] register handle = 0xe9000000
(II) RADEON(0): [dri] Visual configs initialized
(II) RADEON(0): Depth moves disabled by default
(II) RADEON(0): CP in BM mode
(II) RADEON(0): Using 8 MB GART aperture
(II) RADEON(0): Using 1 MB for the ring buffer
(II) RADEON(0): Using 2 MB for vertex/indirect buffers
(II) RADEON(0): Using 5 MB for GART textures
(II) RADEON(0): Memory manager initialized to (0,0) (1024,8191)
(II) RADEON(0): Reserved area from (0,768) to (1024,770)
(II) RADEON(0): Largest offscreen area available: 1024 x 7421
(II) RADEON(0): Will use back buffer at offset 0xc00000
(II) RADEON(0): Will use depth buffer at offset 0xf00000
(II) RADEON(0): Will use 237568 kb for textures at offset 0x1200000
(II) RADEON(0): Render acceleration enabled
(II) RADEON(0): Using XFree86 Acceleration Architecture (XAA)
Screen to screen bit blits
Solid filled rectangles
8x8 mono pattern filled rectangles
Indirect CPU to Screen color expansion
Solid Lines
Scanline Image Writes
Offscreen Pixmaps
Setting up tile and stipple cache:
32 128x128 slots
32 256x256 slots
16 512x512 slots
(II) RADEON(0): Acceleration enabled
(==) RADEON(0): Backing store disabled
(==) RADEON(0): Silken mouse enabled
(II) RADEON(0): Using hardware cursor (scanline 770)
(II) RADEON(0): Largest offscreen area available: 1024 x 7417
(**) Option "dpms"
(**) RADEON(0): DPMS enabled
(II) RADEON(0): No video input capabilities detected and no information is provided - disabling multimedia i2c
(II) Loading sub module "theatre_detect"
(II) LoadModule: "theatre_detect"
(WW) Warning, couldn't open module theatre_detect
(II) UnloadModule: "theatre_detect"
(EE) RADEON: Failed to load module "theatre_detect" (module does not exist, 0)
(EE) RADEON(0): Unable to load Rage Theatre detect module
(II) RADEON(0): X context handle = 0x1
(II) RADEON(0): [drm] installed DRM signal handler
(II) RADEON(0): [DRI] installation complete
(II) RADEON(0): [drm] Added 32 65536 byte vertex/indirect buffers
(II) RADEON(0): [drm] Mapped 32 vertex/indirect buffers
(II) RADEON(0): [drm] dma control initialized, using IRQ 5
(II) RADEON(0): [drm] Initialized kernel GART heap manager, 5111808
(II) RADEON(0): Direct rendering enabled
(==) RandR enabled
(II) Initializing built-in extension MIT-SHM
(II) Initializing built-in extension XInputExtension
(II) Initializing built-in extension XTEST
(II) Initializing built-in extension XKEYBOARD
(II) Initializing built-in extension LBX
(II) Initializing built-in extension XC-APPGROUP
(II) Initializing built-in extension SECURITY
(II) Initializing built-in extension XINERAMA
(II) Initializing built-in extension XFIXES
(II) Initializing built-in extension XFree86-Bigfont
(II) Initializing built-in extension RENDER
(II) Initializing built-in extension RANDR
(II) Initializing built-in extension COMPOSITE
(II) Initializing built-in extension DAMAGE
(II) Initializing built-in extension XEVIE
(**) Generic Keyboard: Core Keyboard
(**) Option "Protocol" "standard"
(**) Generic Keyboard: Protocol: standard
(**) Option "AutoRepeat" "500 30"
(**) Option "XkbRules" "xorg"
(**) Generic Keyboard: XkbRules: "xorg"
(**) Option "XkbModel" "pc104"
(**) Generic Keyboard: XkbModel: "pc104"
(**) Option "XkbLayout" "us"
(**) Generic Keyboard: XkbLayout: "us"
(**) Option "CustomKeycodes" "off"
(**) Generic Keyboard: CustomKeycodes disabled
(**) Option "Protocol" "ImPS/2"
(**) Configured Mouse: Device: "/dev/psaux"
(**) Configured Mouse: Protocol: "ImPS/2"
(**) Option "CorePointer"
(**) Configured Mouse: Core Pointer
(**) Option "Device" "/dev/psaux"
(**) Option "Emulate3Buttons" "false"
(**) Option "ZAxisMapping" "4 5"
(**) Configured Mouse: ZAxisMapping: buttons 4 and 5
(**) Configured Mouse: Buttons: 5
(II) XINPUT: Adding extended input device "Configured Mouse" (type: MOUSE)
(II) XINPUT: Adding extended input device "Generic Keyboard" (type: KEYBOARD)
(II) Configured Mouse: ps2EnableDataReporting: succeeded
Warning: font renderer for ".pcf" already registered at priority 0
Warning: font renderer for ".pcf.Z" already registered at priority 0
Warning: font renderer for ".pcf.gz" already registered at priority 0
Warning: font renderer for ".snf" already registered at priority 0
Warning: font renderer for ".snf.Z" already registered at priority 0
Warning: font renderer for ".snf.gz" already registered at priority 0
Warning: font renderer for ".bdf" already registered at priority 0
Warning: font renderer for ".bdf.Z" already registered at priority 0
Warning: font renderer for ".bdf.gz" already registered at priority 0
Warning: font renderer for ".pmf" already registered at priority 0
SetClientVersion: 0 9

Iron Pablo
09-09-2005, 10:02
1) i film non vanno in full screen: mplayer si apre giustamente in finestra, ma se provo ad andare in full screen, mplayer si allarga, ma il filmato resta un bel quadratino con una cornice tutta nera...


Questa è problema di configurazione di mplayer... Prova Xine o Kaffeine e vedrai che vedi tutto in fullscreen.

Vedo però che avete tutti Xorg, mentre a me va tutto ok con Xfree... Che sia quello!?!?

Embryo
09-09-2005, 10:08
Vedo però che avete tutti Xorg, mentre a me va tutto ok con Xfree... Che sia quello!?!?

Io ho Xorg e va che è una meraviglia (+ veloce che con Xfree).
Sia la mia 9100, che la 9600 sul portatile della mia capufficio (configurato da me)!

Sir Wallace
09-09-2005, 10:14
Questa è problema di configurazione di mplayer... Prova Xine o Kaffeine e vedrai che vedi tutto in fullscreen.


Io le impostazioni di mplayer non le ho toccate... :cry:
con la vecchia scheda andava tutto che un piacere (indovinate un po' la marca della scheda?)


Io ho Xorg e va che è una meraviglia (+ veloce che con Xfree).
Sia la mia 9100, che la 9600 sul portatile della mia capufficio (configurato da me)!

Embryo... se lo dici ancora vengo lì e sai dove te li metto i driver ati?!?!? :mad: :p ;) :D
UUUUUUUFFFFFFFFFFFAAAAAAAAAAAAAAAAAAAAA!!!!!
:muro: :muro: :muro:

VegetaSSJ5
09-09-2005, 12:25
ragazzi visto che ci siamo potete dirmi come far vedere il film a tutto schermo con mplayer?

Embryo
09-09-2005, 12:28
Embryo... se lo dici ancora vengo lì e sai dove te li metto i driver ati?!?!? :mad: :p ;) :D
UUUUUUUFFFFFFFFFFFAAAAAAAAAAAAAAAAAAAAA!!!!!
:muro: :muro: :muro:

Ecco perchè poi non vanno... sbagli il posto! :read: :Prrr: :ciapet:

deviltigre
09-09-2005, 13:07
Mi spiace, ma deviltigre ha ragione... non è il fatto di diffidenza o no!
Io ho provato almeno 3 o 4 metodi di installazione, ultimo dei quali, quello di stanchina... sempre schermo nero!!! Però, in ogni prova, il modulo fglrx veniva compilato, installato e compilato... comincio a temere che sia la mia 9259 ad avere una reazione allergica con 'sti driver..... :confused:





[/CODE]


allora , qualcuno è riuscito ad aiutarmi dio grazias! :cry:
stanchina nn ha specificato ke il modulo fglrx va in conflitto con il modulo radeon x cui dovete prima ELIMINARE il modulo radeon ( o altro driver ) con rmmod radeon (o altro drive)

fatto questo digitate modprobe fglrx

in ogni caso devo reinstallare x ora , cmq fate attenzione alla configurazione di
fglrxconfig e sopratutto al mouse ..
se sbagliate X nn parte probabilmente

più tardi provo il 3D se riesco cmq 2 settimane di lotta... :D

Sir Wallace
09-09-2005, 13:37
mmhhh.. che radeon e fglrx sono in conflitto e mutualmente escusivi, questo lo sapevo.... cmq, adesso che hai caricato il modulo... non vorrei abbatterti, ma non ci confiderei molto...
io ho usato lo stesso xorg.conf sia per radeon (che funziona) che per fglrx, cambiando ovviamente la sezione device... ma NON VA!!!! :mad:
quindi non è un prob di mouse o quant'altro, purtroppo...

cmq, se riesci a farli andare.... faccelo sapere!
scusa, la tua scheda?

deviltigre
09-09-2005, 13:52
io sto usando xfree...
ho 1 radeon 9000

ho il demo di unreal2003 da qlc parte...

quando reinstallo lo provo e v faccio sap! :)

aik
09-09-2005, 13:59
Vedo però che avete tutti Xorg, mentre a me va tutto ok con Xfree... Che sia quello!?!?

Su Xfree ci ho provato per una settimana e non sono riuscito a farli andare :(
ora ho messo Xorg e l'accelerazione continua a non andare ma almeno X va un po piu veloce :)

deviltigre
09-09-2005, 14:05
scusa ma nn c'è il pannelo di controllo x cambiare le impostazioni? :(
m sembra di si ! :confused:

questo è il colmo .. 2 settimane x farli andare... e altre x abilitare il 3d ..
e no e no e no :O !

Sir Wallace
09-09-2005, 14:07
scusa ma nn c'è il pannelo di controllo x cambiare le impostazioni? :(
m sembra di si ! :confused:

questo è il colmo .. 2 settimane x farli andare... e altre x abilitare il 3d ..
e no e no e no :O !

tranquillo che non ci metti altre settimane per il 3d... non ci riesci e basta! :P

Cobra78
09-09-2005, 15:25
In effetti anche io ci ho messo un vallo epr far andare il 3D con la mia 9700 Pro, ma ora funziona, comuqnue vi dico una cosa: io ho dovuto usare le gcc 3.3 sennò mi sfanculava la compilazione di fglrx.ko, inoltre ho il kernel 2.6.10-5(-k7) :)

deviltigre
09-09-2005, 15:41
tranquillo che non ci metti altre settimane per il 3d... non ci riesci e basta! :P


credi davvero? devikl è tornato dal mondo dei morti + volte è 1 versione tarocca di phoenix :D

c'è l'ho fatta !

allora premetto ke questi driver sn parekkio instabili , cioè ad es quando cambio la conf di unreal nella risoluzione lo schermo va 1 po in tilt ...
anke al primo avvio del gioco

kde m si è blokkato 3-4 volte...

adesso sono in 1024x768 a dettagli al max
1 meraviglia :cry:
sn commosso ...
beh nn posso dire ke nel complesso siano all'altezza dei drive win , xkè nn va il tv out e nelle conf sballano 1po..
vabbè ..

ma come fluidità è GRANDIOSO il risultato! :)

installateli , se avrete qlc blocco iniziale amen.. poi dopo ve li godete!
sono stanko morto , 3 ore ke cipollo col pc.. vado...

continuo a non capire xkè avendo tutti debian abbiamo risultati differenti , forse è il chipset della motherboard .. boh... :confused:

altra considerazione ; il pannello ati è davvero RIDICOLO rispetto alla controparte win..
nn t fa scegliere niente..
cmq questa è la 2nda periferica ke riesco a fare andare , sono tr felice :cry:

nn so se il demo va in rete , ma mag in serata lo proviamo .. :)
a più tardi compagni d'armi! :D

aik
09-09-2005, 16:17
Sono riuscito a far andare il DRI! solo che mi succede una cosa ridicola....
Se accendo il pc e vado su linux viene schermata nera...
se invece vado su windows e poi rebooto su linux allora tutto va con il dri abilitato...mah :(

Embryo
09-09-2005, 16:29
allora , qualcuno è riuscito ad aiutarmi dio grazias! :cry:
stanchina nn ha specificato ke il modulo fglrx va in conflitto con il modulo radeon x cui dovete prima ELIMINARE il modulo radeon ( o altro driver ) con rmmod radeon (o altro drive)

fatto questo digitate modprobe fglrx

in ogni caso devo reinstallare x ora , cmq fate attenzione alla configurazione di
fglrxconfig e sopratutto al mouse ..
se sbagliate X nn parte probabilmente

più tardi provo il 3D se riesco cmq 2 settimane di lotta... :D

Quindi:
- nessun miracolo
- nessun mistero della fede
- una semplice ignoranza (nel senso che ignoravi la cosa)

:D Mi fa piacere sapere che hai risolto il tuo problema! ;)

deviltigre
09-09-2005, 18:06
Quindi:
- nessun miracolo
- nessun mistero della fede
- una semplice ignoranza (nel senso che ignoravi la cosa)

:D Mi fa piacere sapere che hai risolto il tuo problema! ;)


e chi lo sa.. com'è ke ad alcune persone quella operazione (modprobe) nn è stata doverosa eseguirla? :confused:

dammi 1 valida ragione xkè a parità di sistema io ho dovuto e loro no.. :O

cmq il discorso è ke questi driver sn parekkio instabili
ho dovuto rifare il fglrxconfig xkè lo schermo era bianco come la neve quasi , pensa te..
mi era preso 1 colpo , pensavo fosse il monitor , poi ho provato win x conferma..
e invece..

driver di pessima qualità , mi chiedo xkè nn possano farli all'altezza di win.. :mad:

unreal2003 va benix in 1024x768x32 , ma penso sia in larga parte x il sistema operativo ke è mlt efficiente..

Embryo
09-09-2005, 18:17
e chi lo sa.. com'è ke ad alcune persone quella operazione (modprobe) nn è stata doverosa eseguirla? :confused:

dammi 1 valida ragione xkè a parità di sistema io ho dovuto e loro no.. :O

cmq il discorso è ke questi driver sn parekkio instabili
ho dovuto rifare il fglrxconfig xkè lo schermo era bianco come la neve quasi , pensa te..
mi era preso 1 colpo , pensavo fosse il monitor , poi ho provato win x conferma..
e invece..

driver di pessima qualità , mi chiedo xkè nn possano farli all'altezza di win.. :mad:

unreal2003 va benix in 1024x768x32 , ma penso sia in larga parte x il sistema operativo ke è mlt efficiente..

Sparo la mia per la valida ragione:
Mi pare di aver capito che usi il kernel precompilato, tra i processi che partono all'avvio c'è hotplug che si occupa di caricare i moduli per il tuo hw... se trova il radeon lo spara su! infatti:

Do not compile the DRM modules into your kernel, because they would conflict with the fglrx kernel module. The best course of action is to enable them as modules and let the user-space drivers load the modules they require.

Hardware detection tools might try to load the radeon DRM module automatically during startup; if that happens to you, either tweak the tools' configuration or disable the radeon DRM module.


Sul portatile che ho installato non ci sono problemi di instabilità però, sicuro di aver configurato tutto correttamente?

deviltigre
09-09-2005, 20:20
in qualunque caso con fglrxconfig nn vai a minare la stabilità ma le performance..
l'unico parametro 2ndo me ke può dare problemi è agp external port...

cmq mi attingo a provare quake3demo.. :D

Embryo
09-09-2005, 20:29
E provare a usare il suo modulo per l'agp? ricordati di disabilitare il modulo esterno in caso!

deviltigre
09-09-2005, 20:34
quello esterno è disabilitato da me x precauzione
penso ke lo stia gia usando il suo xkè altrim nn riesco a concepire come potrebbe avere performance così elevate in unreal2003..

x ora tt ok... sai cosa.. quando vado nel pannello ati e clicco su uscita tv lo schermo si rimpicciolisce... forse è quello il problema ( o 1 dei problemi )
adesso ho disattivato..

Embryo
09-09-2005, 20:44
l'uscita tv l'avevo disabilitata di default... con sti driver pippa è meglio non esagerare :p

deviltigre
09-09-2005, 20:59
t va quake 3 a te?
a me manko parte.. strano.. :confused:

Embryo
09-09-2005, 21:58
a me va a palla... UT2003 demo invece va molto meglio sotto windows... però uso i driver liberi in debian!
Con la prossima release di ati provo a buttarli su...

deviltigre
09-09-2005, 22:05
a me nn parte nemmeno quake 3! :mad:
ho scarikato il demo.sh
lo lancio da terminale e lo installo.. dopo nulla..
strano :mbe:

Embryo
09-09-2005, 22:14
io ho il gioco completo però... hai provato a dare una googlata?

deviltigre
09-09-2005, 22:20
si ho scarikato da la demo..
che strano.. cmq nn c'è più tnt roba su quakeIII vedo..

vabè vedrò con calma che cosa possa essere.. :D

deviltigre
10-09-2005, 14:57
il problema dello schermo chiaro sembra manifestarsi sempre..
x ora uso il modulo agp esterno , ma le performance nn mi sembrano calate..

son riuscito a far andare anke quake2 :D

Embryo
10-09-2005, 16:21
:D e vedi che piano piano fai andare tutto?

deviltigre
10-09-2005, 18:51
cmq il bug dello schermo bianco scompare dopo 3-4 riavvi da solo.. :D
ma nn capisco..

vorrei provare questi driver con xorg.. 2ndo me potrebbero and meglio.. :)

ps .. quake3demo era solo 3dfx... nn ci posso credere.. :eek:
se lo trovo opengl ... :D

se nn sbaglio
avete detto ke il 3d va anke con i driver generici.. prima o poi proverò.. :D

Cimi
10-09-2005, 21:48
ma quanta differenza fanno a glxgears i due driver?
io ho installato cn direct rendering quelli liberi...

deviltigre
10-09-2005, 21:58
non ne ho idea , questi cmq hanno performance elevate ..
prova unreal2003 se vuoi testare qlc di CONCRETO :)

cmq è interessante notare ke da me non cambia la profondità di colore..
come accadeva con xandros , ke penso usasse quelli liberi..(ma ke abilitava l'uscita tv)

Embryo
11-09-2005, 01:16
torno ora dal festival dell'unità... che spanciata :oink:
Prima di andare a letto dico solo che coi driver liberi UT2003 non va proprio bene (su winzoz è molto fluido), proverò ancora una volta i proprietari per vedere la differenza... e vedere se finalmente quei c@zzoni dell'ati han fatto qualcosa come si deve! :Prrr: notte! :D

deviltigre
11-09-2005, 01:25
se con la mia radeon9000 va strepitoso in 1024x768x32 da voi sarà divino :sofico:

deviltigre
11-09-2005, 12:42
torno ora dal festival dell'unità... che spanciata :oink:
Prima di andare a letto dico solo che coi driver liberi UT2003 non va proprio bene (su winzoz è molto fluido), proverò ancora una volta i proprietari per vedere la differenza... e vedere se finalmente quei c@zzoni dell'ati han fatto qualcosa come si deve! :Prrr: notte! :D


provati i driver inclusi inclusi in debian e quake2.. 1 schifezza.. altro ke acc 3d... :ciapet: :ciapet:

deviltigre
11-09-2005, 20:23
fcntl: Invalid argument
fcntl: Invalid argument
X Error of failed request: BadValue (integer parameter out of range for operation)
Major opcode of failed request: 134 (XFree86-VidModeExtension)
Minor opcode of failed request: 10 (XF86VidModeSwitchToMode)
Value in failed request: 0x46
Serial number of failed request: 152
Current serial number in output stream: 153

Backtrace:
[ 1] ./Core.so [0x40a0978a]
[ 2] [0xffffe420]
[ 3] ./Core.so(Destroy__7UObject+0x4b) [0x409dcb5f]
[ 4] ./Core.so(Destroy__7UStruct+0x3e) [0x4098f4fa]
[ 5] ./Core.so(Destroy__6UState+0x1e) [0x4098fff2]
[ 6] ./Core.so(Destroy__6UClass+0x162) [0x409908a6]
[ 7] ./Core.so(ConditionalDestroy__7UObject+0x3e) [0x409dcdbe]
[ 8] ./Core.so [0x409f5277]
[ 9] ./Core.so [0x409fa4f5]
[10] ./Core.so [0x40984ee4]
[11] ./Core.so [0x40a2ac29]
[12] /lib/ld-linux.so.2 [0x4000b79c]
[13] /lib/tls/libc.so.6(exit+0xc4) [0x40bbe7a4]
[14] /usr/X11R6/lib/libX11.so.6 [0x40d0552b]
[15] ./libSDL-1.2.so.0 [0x4006ad50]
[16] /usr/X11R6/lib/libX11.so.6(_XError+0xe4) [0x40d05624]
[17] /usr/X11R6/lib/libX11.so.6(_XReply+0x2d3) [0x40d03b83]
[18] ./libSDL-1.2.so.0(SDL_XF86VidModeQueryVersion+0x8d) [0x4006e42d]
[19] ./libSDL-1.2.so.0(SDL_XF86VidModeGetModeLine+0x5b) [0x4006e7d7]
[20] ./libSDL-1.2.so.0 [0x40068fa8]
[21] ./libSDL-1.2.so.0 [0x40068eeb]
[22] ./libSDL-1.2.so.0(X11_ResizeFullScreen+0x7e) [0x40069d36]
[23] ./libSDL-1.2.so.0(X11_EnterFullScreen+0x155) [0x40069fe5]
[24] ./libSDL-1.2.so.0 [0x4006c1c2]
[25] ./libSDL-1.2.so.0 [0x4006c41b]
[26] ./libSDL-1.2.so.0(SDL_SetVideoMode+0x1b3) [0x4006180f]
[27] /usr/local/games/ut2003_demo/System/SDLDrv.so(ResizeViewport__12USDLViewportUiiii+0x39a) [0x43789eea]
[28] /usr/local/games/ut2003_demo/System/OpenGLDrv.so(SetRes__19UOpenGLRenderDeviceP9UViewportiiiii+0x191) [0x437bfb01]
[29] /usr/local/games/ut2003_demo/System/SDLDrv.so(TryRenderDevice__12USDLViewportPCwiii+0x11e) [0x43789966]
[30] /usr/local/games/ut2003_demo/System/SDLDrv.so(OpenWindow__12USDLViewportUiiiiii+0x223) [0x437888a3]
[31] ./Engine.so(Init__11UGameEngine+0x12d1) [0x4026f565]
[32] ./ut2003-bin [0x805520e]
[33] ./ut2003-bin(main+0x296e) [0x805820e]
[34] /lib/tls/libc.so.6(__libc_start_main+0xd0) [0x40ba6ec0]
[35] ./ut2003-bin(GetFullName__C7UObjectPw+0x7d) [0x80512d1]
Signal: SIGSEGV [segmentation fault]



installato Xorg6.8.1
adesso unreal2003 nn va più..
quake2 invece si.. ke cosa c'è di sbagliato 2ndo voi?

Embryo
11-09-2005, 23:05
La butto lì... prova a reinstallare i driver o a rigenerare xorg.conf. In fondo l'installazione che hai fatto era per xfree. :stordita: magari è quello!

deviltigre
11-09-2005, 23:18
quello è obbligatorio in qnt xfree e xorg necessitano di driver diversi.. nn so xkè questo..
cmq il difetto delle schermo bianco è uguale x entrambi , segno ke hanno molte cose in comune :D

VegetaSSJ5
12-09-2005, 02:00
cmq il difetto delle schermo bianco è uguale x entrambi , segno ke hanno molte cose in comune :D
e grazie al 8===D che hanno molte cose in comune! xorg è un fork di xfree 4.4rc4 ed è nato appunto perchè xfree ha modificato la licenza di distribuzione...

Embryo
12-09-2005, 08:34
quello è obbligatorio in qnt xfree e xorg necessitano di driver diversi.. nn so xkè questo..
cmq il difetto delle schermo bianco è uguale x entrambi , segno ke hanno molte cose in comune :D

Però ora non ho capito se hai reinstallato o no i driver :p
Lo schermo bianco... boh... visto che ati supporta tutto col :ciapet: sotto linux...

Sir Wallace
12-09-2005, 09:41
Sono riuscito a far andare il DRI! solo che mi succede una cosa ridicola....
Se accendo il pc e vado su linux viene schermata nera...
se invece vado su windows e poi rebooto su linux allora tutto va con il dri abilitato...mah :(

:confused: :confused:
tu hai la 9250, vero??? e sei riuscito a far andare il 3d con quella lotteria dei driver ati?! :mbe:
posta un po' la tua conf, cacchio!!!
kernel, distro, X server, x conf... insomma, qualuque cosa ci possa essere di correlato a 'sti benedetti driver!!!!

tenchiu...

deviltigre
12-09-2005, 12:48
ke centra , io ho 1 radeon 9000 ke è anke peggio.. :D
con xfree tt ok , mentre con xorg unreal2003 nn parte.. mistero
con entrambi il bug dello schermo chiarissimo , ke si risolve dopo 4-5 riavvi.. :D

beh a te diventa nero a me bianchissimo ... :D

Sir Wallace
12-09-2005, 13:32
ke centra , io ho 1 radeon 9000 ke è anke peggio.. :D

...che è peggio magari solo come prestazioni, non come supporto! ;)

con xfree tt ok , mentre con xorg unreal2003 nn parte.. mistero con entrambi il bug dello schermo chiarissimo , ke si risolve dopo 4-5 riavvi.. :D
beh a te diventa nero a me bianchissimo ... :D

eheheheh.... che tristezza... :(

deviltigre
12-09-2005, 13:36
penso ke l'acc3d va di default quando installi i driver.. ovviamente controlla nel sistema se hai certe librerie.. :)

Sir Wallace
13-09-2005, 08:58
dunque... ho installato la sarge/stable su un'altro hd... bella intonsa, senza eventuali paciughi incasinanti... stesso risultato, schermo nero :mad: :cry:

l'installer, però, dice che trova le glibc 2.1 mentre nel man di fglrx si legge che richiede le 2.2 o 2.3 ... ... cmq il modulo è stato compilato e modprobe lo carica.... :confused:
le glibc richieste le trovo in:

libg++2.8.1.3-glibc2.2 ?????
libstdc++2.10-glibc2.2 ?????

questi 2 pacchetti sono della unstable... nella descrizione leggo:
NOTE: This is not a final release, but taken from the CVS gcc-2_95-branch (dated 2001-10-02).
This package contains an additional runtime library for C++ programs built with the GNU compiler.


Qui poi si parla del gcc 2.95.... e se uso il 4.0.2 cosa comporta??

Oppure è il pacchetto libc6????
no, queste no perchè anche nella stable sono alla 2.3.2....

Qualche hint??

aik
13-09-2005, 10:18
tu hai la 9250, vero??? e sei riuscito a far andare il 3d con quella lotteria dei driver ati?!
posta un po' la tua conf, cacchio!!!
kernel, distro, X server, x conf... insomma, qualuque cosa ci possa essere di correlato a 'sti benedetti driver!!!!

tenchiu...
hahhaa ti è andata male, ho comprato ieri una nVIDIA fx5500 e ora va tutto liscio come l'olio....appena torno a casa guardo se ho il backup di xorg.conf

p.s: hai compilato fglrx?

deviltigre
13-09-2005, 11:16
dunque... ho installato la sarge/stable su un'altro hd... bella intonsa, senza eventuali paciughi incasinanti... stesso risultato, schermo nero :mad: :cry:

l'installer, però, dice che trova le glibc 2.1 mentre nel man di fglrx si legge che richiede le 2.2 o 2.3 ... ... cmq il modulo è stato compilato e modprobe lo carica.... :confused:
le glibc richieste le trovo in:

libg++2.8.1.3-glibc2.2 ?????
libstdc++2.10-glibc2.2 ?????

questi 2 pacchetti sono della unstable... nella descrizione leggo:
NOTE: This is not a final release, but taken from the CVS gcc-2_95-branch (dated 2001-10-02).
This package contains an additional runtime library for C++ programs built with the GNU compiler.


Qui poi si parla del gcc 2.95.... e se uso il 4.0.2 cosa comporta??

Oppure è il pacchetto libc6????
no, queste no perchè anche nella stable sono alla 2.3.2....

Qualche hint??


http://xoomer.virgilio.it/flavio.stanchina/debian/fglrx-installer.html#install

se hai debian scarikati i pacchetti da questo sito ke t semplifichi la vita..
ricordati :
1) fglrx driver (varia a 2nda di xfree e xorg)
2) fglrxkernel source
3)il modulo x il tuo kernel

http://xoomer.virgilio.it/flavio.stanchina/debian-fglrx-modules/index.html

hai detto ke modprobe lo carica.. ma hai dato il comando fglrxconfig x settare il tutto ?

Sir Wallace
14-09-2005, 09:12
allora... allora... allora....

ho impostato in xorg.cong no_accel e no_dri... ed il 2D funziona...
è proprio un prob del 3D..... :mad:
l'unica cosa che mi viene in mente è proprio riguardante le glibc... lo script (ati_etc_Etc.run) mi dice che trova le 2.1

deviltigre, a te che funzionano, puoi verificare cosa ti dice??? no, perchè se ti dice che hai anche tu le 2.1 e tutto ti, abbandono subito questa strada...

per verificare, basta che parti in modalità testo ed esegui il .run dei driver... questa info è proprio la prima che ti viene fatta vedere.. poi, ovviamente interrompi l'inst...
GRRRAZ! ;)

PS: mi piacerebbe cmq sapere come aggiornare le glibc.... magari apro un nuovo thread....

Sir Wallace
15-09-2005, 08:35
come non detto... aggiornato tutto, ma nulla di nulla... sempre schermo nero... :cry: :cry: :cry: :mad:

ryu hayabusa
15-09-2005, 13:12
lascia perdere , le schede ati per ora con linux non vanno molto bene
siamo in molti ad avere problemi
non importa la configurazione sono proprio i driver ad avere dei bachi ! :(
ti consiglio di usare dei driver generici e aspettare che la ati rilasci
driver migliori di questi ;
ti sconsiglio di cambiare scheda video solo per questo
se vuoi giocare per ora usa windows xp è l'unica :)
ciau

Sir Wallace
15-09-2005, 13:33
... che infinita tristezza... :(
ma devo ammettere che c'è del vero in quello che dici... ormai mi do per vinto... :cry:

animeserie
15-09-2005, 16:15
Io invece ho provato i driver ATI su :
- Debian Sarge xfree kernel 2.4.27
- Fedora Core4 Xorg kernel 2.6.11
- Slackware 10.1 Xorg kernel 2.4.29.
Scheda video Radeon 9000 64mb ddr agp.
L'accelerazione va solo con Debian e Slackware. :D
Con fedora ho blocchi (schermo nero) oppure il sistema grafico parte ma non viene attivata l'accelerazione (ne 2d ne tantomeno 3d...).
Risultato : secondo me c'entra il Kernel...
Non dipende da xfree e Xorg (debian e slack lo attivano il dri)
A proposito, i driver ati che ho provato : versione 8.16 ;)
Ciao!

Sir Wallace
15-09-2005, 16:24
eheheheh son troppo una lotteria!!!! :D

ryu hayabusa
15-09-2005, 17:54
non cambia nulla avere xorg o xfree ..
io li ho provati su diverse distro ne di kernel ..

ho trovato un modo per vedere se vanno :) :

lanciate una monetina ; se viene testa potete installarli altrimenti lasciate perdere :D

animeserie
15-09-2005, 19:05
non cambia nulla avere xorg o xfree ..
io li ho provati su diverse distro ne di kernel ..

ho trovato un modo per vedere se vanno :) :

lanciate una monetina ; se viene testa potete installarli altrimenti lasciate perdere :D

Beh, in effetti non posso darti torto, hai davvero ragione. ;)
In effetti, sto vedendo che qualcuno è riuscito a farli funzionare con kernel 2.6.x
Forse sono sfigato io.
Stasera riprovo con Fedora, stay tuned :D
Ciao!

ryu hayabusa
15-09-2005, 19:09
Beh, in effetti non posso darti torto, hai davvero ragione. ;)
In effetti, sto vedendo che qualcuno è riuscito a farli funzionare con kernel 2.6.x
Forse sono sfigato io.
Stasera riprovo con Fedora, stay tuned :D
Ciao!

si ma ti sembra giusto che devi provare diverse distro per far andare 1 driver da 4 soldi? :mad:

cavolo , deve essere il software che viene incontro agli utenti , non viceversa! :mad:

se posso dirti qualcosa ; butta nel cesso quei driver e non perdere tempo ..
finchè non li fanno decenti gioca con win xp...
consiglio da amico :)

animeserie
16-09-2005, 14:14
si ma ti sembra giusto che devi provare diverse distro per far andare 1 driver da 4 soldi? :mad:

cavolo , deve essere il software che viene incontro agli utenti , non viceversa! :mad:

se posso dirti qualcosa ; butta nel cesso quei driver e non perdere tempo ..
finchè non li fanno decenti gioca con win xp...
consiglio da amico :)

Beh, ti diro',
ieri ho tentato ancora con Fedora... nulla :(
Ma appena ho rimesso Debian è filato tutto liscio (ho potuto provare solo Quake 3 arena demo a 1024x768-32bit e girava benissimo, per quanto possa essere ormai leggero Quake 3 al giorno d'oggi).
Ma con Debian non ho utilizzato l'installer, bensì i pacchetti .deb trovati su quel sito famoso (mi sembra di ricordare un certo Flavio qualcosa ?).
Resta il fatto che in genere non gioco col PC (ok, escludendo Pro Evolution Soccer , Juiced e NFS undergorund, ma tanto quelli sono solo su Win) pero' dovrei programmare delle simulazioni Opengl. Dato che usare Unix è più comodo per la programmazione (ma nemmeno tanto...) avevo deciso di sviluppare qui (e poi, visto che lunedi probabilmente chiedero' la tesi di laurea in Informatica tanto meglio usare Unix con tutta la sua miriade di programmi studiati appositamente, tra cui LaTex).
Il fatto è che io usavo sempre FreeBSD !
E guarda caso, solo nVidia ha sviluppato driver appositi per questa implementazione Unix.
Il DRI con FreeBSD funziona, ma solo quelli interni di Xorg, per cui anche se l'accelerazione c'e', è pur sempre limitata.
Non solo, io sono poco pratico di Debian, avendo appunto usato sempre BSD. :(
Ma ora mi devo adattare, è l'unica.
Ciao!

ryu hayabusa
16-09-2005, 14:22
capito , mi dispiace molto :(
a quel punto allora meglio che usi freeBSD ...
magari li installi entrambi...

neanchio uso molto il pc per giocare , ma ogni tanto...

animeserie
17-09-2005, 15:52
capito , mi dispiace molto :(
a quel punto allora meglio che usi freeBSD ...
magari li installi entrambi...

neanchio uso molto il pc per giocare , ma ogni tanto...

E infatti, ogni tanto , per rilassarsi un po' (magari la sera poco prima di uscire, dopo una giornata pesante) una partitella non guasta mica :D
Ho provato ad aggiornare Fedora, ma nulla :(
Oggi voglio provare Debian con la Radeon 9550 (sul PC in sign).
Voglio proprio vedere che succede. Speriamo bene ;)
Ciao!