I have a dual head radeon 9600 problem running in linux stable.  This problem did not occur in 6.8.2, and originally showed up in 6.9.0.  I "solved" the problem by rolling back to 6.8.2, but now it seems the problem is not going to be fixed, most likely because no one else reported it.
<br><br>The problem is that in X windows, the image on the primary monitor is copied is displayed on the second monitor.  HOWEVER, it believe it's displaying 2 different images, and I can scroll the mouse onto the second montior.  However, I cannot interact with anything on that screen, as they are not really "there."  For example, when I started firefox, it started in the second window, and i had to "guess" where it was showing up and drag it onto the main monitor.
<br><br>I know just about nothing regaurding xorg, so I have pieced my config file together from things I've found online.<br><br>Again, up until the migration to 6.9.0 this config worked for me.  I'm running to 21" crt monitors.
<br><br><br>lspci reports:<br>0000:01:00.0 VGA compatible controller: ATI Technologies Inc RV350 AQ [Radeon 9600]<br>0000:01:00.1 Display controller: ATI Technologies Inc RV350 AQ [Radeon 9600] (Secondary)<br><br><br>/etc/X11/xorg.conf:
<br><br>Section "Files"<br>    FontPath    "unix/:7100"            # local font server<br>    # if the local font server has problems, we can fall back on these<br>    FontPath    "/usr/share/X11/fonts/misc"
<br>    FontPath    "/usr/share/X11/fonts/cyrillic"<br>    FontPath    "/usr/share/X11/fonts/100dpi/:unscaled"<br>    FontPath    "/usr/share/X11/fonts/75dpi/:unscaled"<br>    FontPath    "/usr/share/X11/fonts/Type1"
<br>    FontPath    "/usr/share/X11/fonts/CID"<br>    FontPath    "/usr/share/X11/fonts/100dpi"<br>    FontPath    "/usr/share/X11/fonts/75dpi"<br>        # paths to defoma fonts<br>    FontPath    "/var/lib/defoma/x-
ttcidfont-conf.d/dirs/TrueType"<br>    FontPath    "/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID"<br>EndSection<br><br>Section "Module"<br>    Load    "GLcore"<br>    Load    "i2c"
<br>    Load    "bitmap"<br>    Load    "ddc"<br>    Load    "dri"<br>    Load    "extmod"<br>    Load    "freetype"<br>    Load    "glx"<br>    Load    "int10"
<br>    Load    "type1"<br>    Load    "vbe"<br>EndSection<br><br>Section "InputDevice"<br>    Identifier    "Generic Keyboard"<br>    Driver        "kbd"<br>    Option        "CoreKeyboard"
<br>    Option        "XkbRules"    "xorg"<br>    Option        "XkbModel"    "pc104"<br>    Option        "XkbLayout"    "us"<br>EndSection<br><br>Section "InputDevice"
<br>    Identifier    "Configured Mouse"<br>    Driver        "mouse"<br>    Option        "CorePointer"<br>    Option        "Device"        "/dev/input/mice"<br>    Option        "Protocol"        "ImPS/2"
<br>    Option        "Emulate3Buttons"    "true"<br>    Option        "ZAxisMapping"        "4 5"<br>EndSection<br><br>Section "Device"<br>    Identifier    "Card0"
<br>    Driver        "radeon"<br>    BusID        "PCI:1:0:0"<br>    Option         "MonitorLayout" "CRT, CRT"<br>EndSection<br><br>Section "Device"<br>    Identifier    "Card1"
<br>    Driver        "radeon"<br>    Screen        1<br>    BusID        "PCI:1:0:0"<br>    Option         "MonitorLayout" "CRT, CRT"<br>EndSection<br><br>Section "Monitor"
<br>    Identifier    "CRT"<br>    HorizSync    30-95<br>    VertRefresh    56-75<br>    Option        "DPMS"<br>EndSection<br><br>Section "Screen"<br>    Identifier    "Screen0"<br>
    Device        "Card0"<br>    Monitor        "CRT"<br>    DefaultDepth    24<br>    SubSection "Display"<br>        Depth        24<br>        Modes        "1600x1200" "1280x1024" "1280x960" "1024x768" "640x480"
<br>    EndSubSection<br>EndSection<br><br>Section "Screen"<br>    Identifier    "Screen1"<br>    Device        "Card1"<br>    Monitor        "CRT"<br>    DefaultDepth    24<br>    SubSection "Display"
<br>        Depth        24<br>        Modes        "1600x1200" "1280x1024" "1280x960" "1024x768" "640x480"<br>    EndSubSection<br>EndSection<br><br>Section "ServerLayout"
<br>    Identifier    "Default Layout"<br>    Screen        0 "Screen0" 0 0<br>    Screen        1 "Screen1" RightOf "Screen0"<br>    InputDevice    "Generic Keyboard"<br>
    InputDevice    "Configured Mouse"<br>EndSection<br><br>Section "ServerFlags"<br>    Option "Xinerama"<br>EndSection<br><br>Section "DRI"<br>    Mode    0666<br>EndSection<br><br>
<br><br>