デュアルモニタの設定

簡単にできるだろうと思っていたのですがかなりハマってしまいました。
gnome3が対応していないとかドライバが正常に認識されていないんじゃないかとか。
なんか難しく考えすぎました。

ちなみに環境
ビデオカード1枚。出力はDVIとHDMI
モニタは2枚。

やったこと
xorg.confのSection "Screen"でVirtual 2560 1050を追加する。(解像度1280x1024)
gnome-control-centerのdisplaysでミラーのチェックを外す。

大変参考になったサイト
http://www.misho-web.com/diary/Comment/20090516
http://blog.livedoor.jp/ooboofo3/archives/51636159.html

xorg.confです。間違っているかもしれないけど載せます。

Section "ServerLayout"
	Identifier     "aticonfig Layout"
	Screen      0  "aticonfig-Screen[0]-0" 0 0
EndSection

Section "Module"
EndSection

Section "ServerFlags"
	Option	    "Xinerama" "off"
EndSection

Section "Monitor"
	Identifier  "RDT17"
	Option	    "VendorName" "EIZO"
	Option	    "ModelName" "Generic Autodetecting Monitor"
	Option	    "DPMS" "true"
	Option	    "PreferredMode" "1280x1024"
	Option	    "TargetRefresh" "60"
	Option	    "Disable" "false"
EndSection

Section "Monitor"
	Identifier  "S1701"
	Option	    "VendorName" "Mitsubishi"
	Option	    "ModelName" "Generic Autodetecting Monitor"
	Option	    "DPMS" "true"
	Option	    "PreferredMode" "1280x1024"
	Option	    "TargetRefresh" "60"
	Option	    "Disable" "false"
	Option      "Primary" "true"
EndSection

Section "Device"
	Identifier  "Radeon7750"
	Driver      "fglrx"
	Option	    "Monitor-DFP5" "S1701"
	Option	    "Monitor-DFP6" "RDT17"
#	Option	    "" "/etc/X11/xorg.conf"
	BusID       "PCI:1:0:0"
EndSection

Section "Screen"
	Identifier "aticonfig-Screen[0]-0"
	Device     "Radeon7750"
	Monitor    "S1701"
	Monitor    "RDT17"
	DefaultDepth     24
	SubSection "Display"
		Viewport 0 0
		Depth    24
		Virtual  2560 1050
	EndSubSection
EndSection

Section "DRI"
	Mode         0666
EndSection