Hi!
I have trouble with dual head setup. I believe that video card support that, because win xp in dual boot works fine in dual head mode.
So i connect second monitor, boot, as soon as I log in appears massage “Oh no! Something has go wrong. A problem has occurred and system can’t recover, Please log out and try again”. Then I am logged in system and connect second monitor, type xrandr --auto or xrandr -q and noise appears on both monitors. I call that “noise” but i believe that is some memory issue or something, not actually video noise.
https://s17.postimg.org/sjc1739bv/IMG_20160901_092906.jpg](https://postimg.org/image/sjc1739bv/)
Phisycally this is one video board.
lspci -nnk
05:00.0 VGA compatible controller [0300]: Advanced Micro Devices, Inc. [AMD/ATI] RV370 [Radeon X300] [1002:5b60]
Subsystem: ASUSTeK Computer Inc. Device [1043:0083]
Kernel driver in use: radeon
Kernel modules: radeon
05:00.1 Display controller [0380]: Advanced Micro Devices, Inc. [AMD/ATI] RV370 [Radeon X300 SE] [1002:5b70]
Subsystem: ASUSTeK Computer Inc. Device [1043:0082]
xrandr -q
Screen 0: minimum 320 x 200, current 1680 x 1050, maximum 4096 x 4096
VGA-0 connected primary 1680x1050+0+0 (normal left inverted right x axis y axis) 473mm x 296mm
1680x1050 60.0*+ 60.0*
1600x1200 60.0
1280x1024 75.0 60.0
1440x900 59.9
1280x960 60.0
1152x864 75.0
1024x768 75.1 70.1 60.0
832x624 74.6
800x600 72.2 75.0 60.3 56.2
640x480 75.0 72.8 66.7 60.0
720x400 70.1
DVI-0 connected (normal left inverted right x axis y axis)
1280x1024 60.0 + 75.0 60.0
1280x960 60.0
1152x864 75.0
1024x768 75.1 70.1 60.0
832x624 74.6
800x600 72.2 75.0 60.3 56.2
640x480 75.0 72.8 66.7 60.0
720x400 70.1
S-video disconnected (normal left inverted right x axis y axis)
xrandr --listproviders
Providers: number : 1
Provider 0: id: 0x54; cap: 0xf (Source Output, Sink Output, Source Offload, Sink Offload); crtcs: 2; outputs: 3; associated providers: 0; name: radeon
output VGA-0
output DVI-0
output S-video
I tried manually configure /etc/X11/xorg.conf.d files and have no success.
50-monitor.conf
Section "Monitor"
Identifier "VGA-0"
VendorName "ASUS"
ModelName "VW225D"
Modeline "1680x1050" 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync
Option "PreferredMode" "1680x1050"
Option "DPMS" "true"
Option "Position" "0 0"
EndSection
Section "Monitor"
Identifier "DVI-0"
VendorName "Samsung"
ModelName "SyncMaster 730BF"
Modeline "1280x1024" 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync
Option "PreferredMode" "1280x1024"
Option "DPMS" "true"
Option "Position" "1680 0"
Option "RightOf" "VGA-0"
EndSection
50-screen.conf
Section "Screen"
Identifier "Screen0"
Device "RadeonX300_1h"
Monitor "VGA-0"
SubSection "Display"
Virtual 2960 1056
EndSubSection
EndSection
Section "Screen"
Identifier "Screen1"
Device "RadeonX300_2h"
Monitor "DVI-0"
SubSection "Display"
Virtual 2960 1056
EndSubSection
EndSection
50-device.conf
Section "Device"
Identifier "RadeonX300_1h"
Driver "radeon"
Screen 0
BusID "PCI:5:0:0"
## Required magic for radeon/radeonhd drivers; output name
## (here: "DVI-0") can be figured out via 'xrandr -q'
Option "monitor-VGA-0" "VGA-0"
Option "ZaphodHeads" "VGA-0"
Option "EXAPixmaps" "off"
EndSection
Section "Device"
Identifier "RadeonX300_2h"
Driver "radeon"
Screen 0
BusID "PCI:5:0:1"
## Required magic for radeon/radeonhd drivers; output name
## (here: "DVI-0") can be figured out via 'xrandr -q'
Option "monitor-DVI-0" "DVI-0"
Option "ZaphodHeads" "DVI-0"
Option "EXAPixmaps" "off"
EndSection
90-serverlayout.conf
Section "ServerLayout"
Identifier "Main"
Screen 0 "Screen0"
Screen 1 "Screen1" RightOf "Screen0"
Option "Xinerama" "on"
Option "Clone" "off"
EndSection
Any thoughts or advice?