In this case, ISB = DRM/DMCA/USgovernment+hollywood/MS who have conspired basically to make it next to impossible for GPU specifications to be properly disclosed by hardware manufacturers.
That being said, x1300 is an R500 chip, supported by the open source ati/radeon driver and by radeonhd, ALTHOUGH, this support is fairly recent and may still contain bugs.
Now there are two ways to configure multiple displays;
1) X server configuration file,
2) user settings.
There is a graphical way to configure the X server, HOWEVER, this program has always lacked the ability to *actually work*. This method is System --> Adminstration --> Display. This program may or may not be installed. If it is there, I wouldn't waste my time with it.
The second one works *sortof*. By sortof, I mean that the display settings may or may not be applied before your gnome panels start, which means that your panels may all move onto your primary display device. This setting is available at System --> Preferences --> Hardware --> Screen Resolution. Uncheck the box that says "mirror", then drag the pink square off from covering up the green square (put it beside or something, this indicates the relative positioning of the two displays), then set the resolution for each display, and press "apply".
If you want to do it the right way though, you need to create an xorg.conf file and modify it manually.
Here's a starting point... create a file "/etc/X11/xorg.conf" with the following in it:
Code:
# Xorg configuration created by system-config-display
Section "ServerLayout"
Identifier "single head configuration"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "InputDevice"
# keyboard added by rhpxl
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105+inet"
Option "XkbLayout" "us"
EndSection
Section "Device"
Identifier "Videocard0"
Driver "radeon"
Option "monitor-DVI-0" "mon0"
option "monitor-DVI-1" "mon1"
EndSection
Section "Monitor"
Identifier "mon0"
EndSection
Section "Monitor"
Identifier "mon1"
Option "LeftOf" "mon0"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "mon0"
DefaultDepth 24
SubSection "Display"
Depth 24
EndSubSection
EndSection
This may, of course, need to be tweaked for your specific configuration. For example, where I have it set "LeftOf", you may want "RightOf" or "Above", etc., and where it says "monitor-DVI-0" and "monitor-DVI-1", you may need something different, like "monitor-VGA-0" (or 1) for standard VGA plug, "monitor-LVDS" (laptop), etc.
Notes:
1) If you have installed fglrx from rpmfusion, REMOVE IT.
2) I tested this with a Radeon HD3650 using two DVI connectors. It should also work fine with your R500.