- This topic has 4개 답변, 4명 참여, and was last updated 15 years, 8 months 전에 by
인베인. This post has been viewed 1342 times
-
-
듀얼모니터를 위한 xorg.conf 삽질입니다.
2006년도 당시 이곳저곳 기웃거리며 만든 xorg.conf 파일입니다.
이런저런 귀찮은거 딱 접고 이거 하나 복사해서 몇년째 씁니다..
쉽게 갈려고 만들었으나 발생되는 문제는 ..ㅎㅎ 흐흐..
틀리거나 삽질이 시원찮으면 글을 올려주세요.. 공부를 해보지요..
심각한 문제라든가 진짜 초허접이라 판단되면 글 내리겠습니다.
-- fedora 12 에서 nvidia 드라이버는 nouveau 로 대체되었지요.
이렇게 저렇게 삽질을 했지만 그넘의 프레임버퍼 땜시 속좀 상했죠..
물론 컴피즈나 3d 게임은 안하는 저로선 큰 상관은 없어서 걍 씁니다.
-- xorg.conf 가 기본적으로 설치되어 있지 않습니다.
물론 만들어서 쓰면 됩니다.
-- 해당 그래픽카드의 드라이버 모듈네임은
$ lsmod // 이걸로 확인하시길. 자세한게 있엇는데 기억이 안나서 좀 찾아보고 수정할께요..
# sudo vi /etc/X11/xorg.conf
###########################
# 1. Desktop Layout Setting
Section "ServerLayout"
Identifier "Multihead layout"
Screen 0 "Screen0" LeftOf "Screen1" // 모니터 위치 조정입니다. 왼쪽 오른쪽..RightOf 도 먹힙니다.
Screen 1 "Screen1" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Mouse0" "CorePointer"
Option "Xinerama" "on"
Option "Clone" "off" // 물론 독립된 화면...
EndSection################
# 2. Module Load
Section "Module"
Load "dbe"
Load "extmod"
Load "freetype"
Load "glx"
EndSection#################################
# 3. Input Device Setting - Mouse & Keyboard
# 3-1 Mouse Setting
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/input/mice"
Option "Emulate3Buttons" "no"
Option "ZAxisMapping" "4 5"
EndSection# 3-2 Keyboard Setting
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbLayout" "us"
Option "XkbModel" "pc105"
EndSection####################
# 4. Monitor Setting
# 4-1 TGIC 1280x1024 : Left Monitor 19" LCD Plat
Section "Monitor"
Identifier "Monitor0"
VendorName "TGIC"
ModelName "LCD Panel 1280x1024"
HorizSync 30.0 - 110.0
VertRefresh 50.0 - 150.0
Option "DPMS"
EndSection# 4-2 E-Zone(BENQ) 1680x1050 : Light Monitor 20.1" LCD Wide
Section "Monitor"
Identifier "Monitor1"
VendorName "E-ZONE"
ModelName "LCD Panel 1680x1050"
HorizSync 31.5 - 67.0
VertRefresh 50.0 - 75.0
Option "DPMS"
EndSection#######################
# 5. Video Card Setting
# 5-1 Left Monitor : D-sub
Section "Device"
Identifier "Videocard0"
Driver "nouveau"
VendorName "NVIDIA Corporation Geforce 7600 GT"
EndSection# 5-2 Right Monitor : DVI
Section "Device"
Identifier "Videocard1"
Driver "nouveau"
VendorName "Videocard Vendor"
BoardName "nVidia Corporation GeForce 7600 GT"
BusID "PCI:1:0:0"
Screen 1
EndSection###################
# 6. Screen Setting
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1280x1024"
EndSubSection
EndSectionSection "Screen"
Identifier "Screen1"
Device "Videocard1"
Monitor "Monitor1"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1680x1050"
EndSubSection
EndSection# End of xorg.conf
가슴 속 끓는 피를 고이 바치자
- 답변은 로그인 후 가능합니다.