Card:ATI Radeon : ATI Technologies Inc.|Radeon Mobility M6 LY (AGP) [DISPLAY_VGA] (vendor:1002 device:4c59 subv:1014 subd:052f)
Well, your card is recognized all right.
First you will need the kernel source: you can do this through MCC (Mandriva Control Center) -> software -> search for kernel source. If you have multiple options to choose from, open a terminal and type "uname -r", this will show which kernel you have, then you select the according kernel source in MCC.
Next, download the latest driver from
https://a248.e.akamai.net/f/674/9206/0/www2...-x86.x86_64.runor go to
http://ati.amd.com/support/drivers/linux/linux-radeon.html if the uppper link doesn't work
and then follow the instructions from the installer manual, or for you convenience:
Install Driver Option
The Install Driver option provides two driver installation options. The Automatic option installs all driver components, and the Custom option allows for the selection of driver components to be installed.
Automatic Driver Installation Option
To install the ATI Proprietary Linux driver using the Automatic option, follow these steps:
1. Launch the Terminal Application/Window and navigate to the ATI Proprietary Linux driver download.
2. Enter the command sh ./ati-driver-installer-8.34.8.run to launch the ATI Proprietary Linux driver installer. The ATI Proprietary Linux Driver Setup dialog box is displayed.
Note: You must be logged in with super user privileges in order to successfully install the ATI Proprietary Linux driver.
3. Select Install Driver and click Continue. The ATI License Agreement is displayed.
4. Read the License Agreement and Click I Agree to continue the installation, or Cancel to terminate the installation. The Mode of Installation Dialog Box is displayed.
5. Select Automatic and click Continue. The ATI Proprietary Linux Driver is installed, and the Installation Complete Dialog box is displayed.
6. Click View HTML Release Note for last minute driver information, or Exit to close the ATI Proprietary Linux Driver Installer.
7. Launch the Terminal Application/Window and run /usr/X11R6/bin/aticonfig --initial to configure the driver.
8. Reboot your system.
You have successfully installed the ATI Proprietary Linux Driver.
To check whether it worked, run in a terminal
"fglrxinfo", it will show the details of the driver/card
or "fgl_glxgears" for a working OpenGL applet.
Now, find the xorg.conf (from memory it is either in /etc or in /etc/X11)
and edit it. You will have to do this as root. So, in a terminal you could try
"su" (become super user)
"cp /etc/xorg.conf /etc/xorg.conf.backup" (make a backup in case it goes bad, or /etc/X11/xorg.conf, first check it's location)
"kate /etc/xorg.conf &" (or /etc/X11/xorg.conf)
then you will get an editor, which you can edit.
Add this to the Device section of the file and edit it the way you want. (source ubuntuforums.org)
Option "DesktopSetup" "horizontal" #Enable Big Desktop
Option "Mode2" "1280x1024" #Resolution for second monitor
Option "DesktopSetup" "LCD,AUTO" #the types of monitors that is connected LVDS = LCD, CRT, AUTO
Option "EnablePrivateBackZ" "yes" #Enable 3d support <= May Not Work
Option "HSync2" "65" #This sets the horizontal sync for the secondary display.
Option "VRefresh2" "60" #This sets the refresh rate of the secondary display.
Save the file, close the editor.
Reboot.
In a terminal do "
aticonfig --query-monitor" you should see whether both screens are seen...
And then (from ati wiki):
Turn off the second monitor on the fly and start to use only laptop internal monitor (lvds) aticonfig --enable-monitor=lvds --effective=now
Swap monitors on the fly when using big desktop mode
aticonfig --swap-monitor --effective=now
- Note: This only works for big desktop setup. This will swap the contents on the two monitors.
There's also a Troubleshoot page:
http://wiki.cchtml.com/index.php/TroubleshootingSucces!!!