우분투를 사용한지 4일 되었다.
그동안 모니터는 두개지만 마치 모니터 하나있는 작업환경이었다.
모니터 두개가 모두 같은 화면을 보여주고 있었기 때문에.. -_-;;
듀얼모니터를 구현하기 위해서 여러가지를 찾아보고 뒤저보았는데, 쉽지가 않았다..
우선 듀얼모니터를 사용하기 위해서는 그래픽카드 드라이버를 설치하고
/etc/X11/xorg.conf
파일을 설정하면 된다.
파일 내에서 Device 섹션을 추가하고 Monitor 섹션, Screen을 두개씩 만들었다.
그리고, ServerFlags 섹션을 만들어서 Xinerama 옵션을 1로 하고 Clone 을 off 값을 주었다.
마지막으로 ServerLayout 섹션에서 스크린을 두가지로 설정하고 두 모니터를 붙여놓기 위해서
Screen 0 "Screen0" RightOf "Screen1"
Screen 1 "Screen1" 0 0
이렇게 해줬다.
그리고 리붓................... 성공이닷 ㅋㅋㅋ
밑에는 변경한 파일부분이다.
less.. Section "Device"
Identifier "ATI Technologies, Inc. RV370 5B60 [Radeon X300 (PCIE)]0"
Driver "ati"
BusID "PCI:4:0:0"
Screen 0
EndSection
Section "Device"
Identifier "ATI Technologies, Inc. RV370 5B60 [Radeon X300 (PCIE)]1"
Driver "ati"
BusID "PCI:4:0:0"
Screen 1
EndSection
Section "Monitor"
Identifier "LX952"
Option "DPMS"
EndSection
Section "Monitor"
Identifier "LX1951"
Option "DPMS"
EndSection
Section "Screen"
Identifier "Screen0"
Device "ATI Technologies, Inc. RV370 5B60 [Radeon X300 (PCIE)]0"
Monitor "LX952"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1280x1024" "1024x768" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 4
Modes "1280x1024" "1024x768" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 8
Modes "1280x1024" "1024x768" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 15
Modes "1280x1024" "1024x768" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 16
Modes "1280x1024" "1024x768" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 24
Modes "1280x1024" "1024x768" "800x600" "720x400" "640x480"
EndSubSection
EndSection
Section "Screen"
Identifier "Screen1"
Device "ATI Technologies, Inc. RV370 5B60 [Radeon X300 (PCIE)]1"
Monitor "LX1951"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1280x1024" "1024x768" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 4
Modes "1280x1024" "1024x768" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 8
Modes "1280x1024" "1024x768" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 15
Modes "1280x1024" "1024x768" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 16
Modes "1280x1024" "1024x768" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 24
Modes "1280x1024" "1024x768" "800x600" "720x400" "640x480"
EndSubSection
EndSection
Section "ServerFlags"
Option "Xinerama" "1"
Option "Clone" "off"
EndSection
Section "ServerLayout"
Identifier "Default Layout"
Screen 0 "Screen0" RightOf "Screen1"
screen 1 "Screen1" 0 0
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
InputDevice "stylus" "SendCoreEvents"
InputDevice "cursor" "SendCoreEvents"
InputDevice "eraser" "SendCoreEvents"
EndSection
이 글의 트랙백 주소 :: http://muindo.clus.org/trackback/29