ATIConfig settings cause second monitor issues

Opensuse 11.3 using KDE.
ATI Catalyst 10.10 drivers installed for use with a 5850
After attempting to get aticonfig to setup my dual monitor setup (dual-head, horizontal) and then rebooting, the second monitor is completely black, though the OS appears to recognize it as a display, kind of. . .

The mouse cursor will move the second monitor, but the cursor changes to an X symbol. There is no background. I am unable to move windows to the second monitor.

I have been able to get both monitors into this state independently with different settings. KDE’s configure desktop applet only shows one of the displays as configurable. I’ve done a few installs and removals of the Catalyst driver to correct this behavior. Upon a fresh install of the drivers, both monitors are functional, but only as a clone of one another. As soon as I attempt to set it to dual head and horizontal, a monitor blacks out upon reboot.

Any help would be appreciated.

Edit
Additional information - The graphics drivers seem to work beautifully in Ubuntu, with the proprietary drivers being found, recognized and installed pretty much automatically by the system. Everything was configurable through the settings within Ubuntu. Not trying to knock Opensuse, just giving it as a reference point illustrating that there is a known-good configuration and it is not a hardware issue, per se. Trying Opensuse instead of Ubuntu because of seemingly irreconcilable issues with wifi/WPA.

I’m assuming that you were using the Gnome desktop environment with Ubuntu. If so, that may also explain the better behaviour with respect to dual screen support. KDE4.X is still problematic for some users with multi-screen configurations.

Similar thread I found on KDE forum.

See if anything here helps:

X.Org/Dual Monitors/ATI - Gentoo Linux Wiki

Hopefully others with similar graphics hardware and dual display setup can assist further here.

To set up the monitors the following command should be used,

amdxdg-su -c amdcccle

This should be available under the

  • KDE icon
    – Applications
    — System
    ---- Configuration
    ----- ATI Catalyst Control Center (Administrative)

This program modifies the xorg.conf file but sometimes does not remove unwanted
entries from a previous setup. The file on my machine is as follows, hope it is
of some help. At times this file has erroneously contained more Monitor & Device
sections which confuses X11.

/etc/X11/xorg.conf

Section “ServerLayout”
Identifier “amdcccle Layout”
Screen 0 “amdcccle-Screen[1]-0” 0 0
EndSection

Section “Monitor”
Identifier “0-CRT1”
Option “VendorName” “ATI Proprietary Driver”
Option “ModelName” “Generic Autodetecting Monitor”
Option “DPMS” “true”
Option “PreferredMode” “1680x1050”
Option “TargetRefresh” “60”
Option “Position” “0 0”
Option “Rotate” “normal”
Option “Disable” “false”
EndSection

Section “Monitor”
Identifier “0-DFP2”
Option “VendorName” “ATI Proprietary Driver”
Option “ModelName” “Generic Autodetecting Monitor”
Option “DPMS” “true”
Option “PreferredMode” “1920x1080”
Option “TargetRefresh” “60”
Option “Position” “1680 0”
Option “Rotate” “normal”
Option “Disable” “false”
EndSection

Section “Device”
Identifier “amdcccle-Device[1]-0”
Driver “fglrx”
Option “Monitor-CRT1” “0-CRT1”
Option “Monitor-DFP2” “0-DFP2”
BusID “PCI:1:5:0”
EndSection

Section “Screen”
Identifier “amdcccle-Screen[1]-0”
Device “amdcccle-Device[1]-0”
DefaultDepth 24
SubSection “Display”
Viewport 0 0
Virtual 3600 1920
Depth 24
EndSubSection
EndSection