Click to See Complete Forum and Search --> : ATI Radeon 9700pro Driver Install


InsAn3
12-13-2002, 07:34 AM
I'm a long time Linux fan but yet a n00b b/c I can never get 3D games to run with my graphics card. Just found out official drivers were released and am trying to get this bastage going.

I'm running Mandrake 9.0. Which I have no clue what kernel Im running or version of Xfree. Being a n00b I can't get most things to run. This is the most important thing, b/c it decides the fate of my Linix usage. =). Can someone lead me in the right direction? thx in advance

<deps //home/insan3/Drivers/fglrx-glc22-4.2.0-2.5.1.i586.rpm;echo RESULT=$? file
/usr/X11R6/lib/libGL.so.1.2 from install of fglrx-glc22-4.2.0-2.5.1 conflicts with file from package
XFree86-libs-4.2.1-3mdk RESULT=1

Linux is very user-friendly. . . its just damn picky who its friends with

mdwatts
12-13-2002, 10:19 AM
uname -r (for the kernel version)

X -version (for the X version)

Do you need to install fglrx-glc22-4.2.0-2.5.1 as it would seem you already have libGL installed as part of XFree86-libs.

locate libGL (list files containing libGL
or
rpm -ql XFree86-libs (list the files in the XFree86-lib rpm package)

Xsecrets
12-13-2002, 10:53 AM
You should really read the readme file on ati's site. It talks about this very problem. I believe the solution is to install with the nodeps option.

damusic2me
12-31-2002, 06:49 AM
got the same problem as you, and so far, my 2D is working.
for 3D i also figured out what went wrong, but haven't fixed it yet (couldn't rebuild kernel)
anyway: i used rpm -i filename.rpm
and when that has worked, there is this configure program which you have to run.
it asks for monitor, resolution, keyboard, mouse, etc.
if you can't get that to work you could try this after you used the config thingy
(i know how hard it is to start with linux without a graphical shell )
type mc (to open midnight commander) which you can use to navigate a bit graphical.
and go to /etc/x11
there you'll find a file named: XF86Config-4
and you could edit the last part of the file to this:
(anything with a # in front of it doesn't do ****.)
i'm not saying it's a good solution, but i think you should be able to start up x windows

# 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"
Screen 0
BusID "PCI:1:0:0" # vendor=1002, device=4e44

# === OpenGL Overlay ===
# Note: When OpenGL Overlay is enabled, Video Overlay
# will be disabled automatically
Option "OpenGLOverlay" "off"

# === Fire GL DDX driver module specific settings ===
# === Screen Management ===
Option "DesktopSetup" "0x00000000"
Option "HSync2" "unspecified"
Option "no_dri" "no"
Option "GammaCorrectionI" "0x00000000"

# === disable PnP Monitor ===
#Option "NoDDC"

# === disable/enable XAA/DRI ===
Option "no_accel" "no"

# === OpenGL specific profiles/settings ===
Option "Capabilities" "0x00000000"

# === Video Overlay for the Xv extension ===
Option "VideoOverlay" "on"
Option "GammaCorrectionII" "0x00000000"
Option "VRefresh2" "unspecified"
Option "Display2" "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"
DefaultColorDepth 16
#Option "backingstore"

Subsection "Display"
Depth 8
Modes "1152x864" "1024x768" "800x600" "640x480"
EndSubsection

Subsection "Display"
Depth 15
Modes "1152x864" "1024x768" "800x600" "640x480"
EndSubsection

Subsection "Display"
Depth 16
Modes "1152x864" "1024x768" "800x600" "640x480"
EndSubsection

Subsection "Display"
Depth 24
Modes "1152x864" "1024x768" "800x600" "640x480"
EndSubsection
DefaultDepth 24
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"
InputDevice "Keyboard1" "CoreKeyboard"
InputDevice "Mouse1" "CorePointer"

# 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"
EndSection