달력

07

« 2010/07 »

  •  
  •  
  •  
  •  
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31

'dual monitor'에 해당되는 글 1

  1. 2007/06/23 acer travelmate 2423 듀얼 모니터 설정
2007/06/23 02:56

acer travelmate 2423 듀얼 모니터 설정 Linux2007/06/23 02:56

- 우분투  gutsy 환경에서 테스트 함.
- acer travelmate 2423 그래픽 : Intel 915GM
- 노트북 + 외부 LCD 모니터(samtron 52s 15') 로 듀얼 모니터 구성하기 위한 xorg.conf 파일.
- 주요 설정 내용은 굵은 글씨 처리함
- 단점으로는 compiz(데스크탑 효과) 를 사용할 수 없음
- 우선 BIOS 에서 'Power on Display' 항목의 값을 'Auto' -> 'Both' 로 변경해야 함.

Section "Files"
 FontPath "/usr/share/fonts/X11/misc"
 FontPath "/usr/share/fonts/X11/cyrillic"
 FontPath "/usr/share/fonts/X11/100dpi/:unscaled"
 FontPath "/usr/share/fonts/X11/75dpi/:unscaled"
 FontPath "/usr/share/fonts/X11/Type1"
 FontPath "/usr/share/fonts/X11/100dpi"
 FontPath "/usr/share/fonts/X11/75dpi"
 # path to defoma fonts
 FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
 Load "i2c"
 Load "bitmap"
 Load "ddc"
 Load "dri"
 Load "extmod"
 Load "freetype"
 Load "glx"
 Load "int10"
 Load "vbe"
EndSection

Section "InputDevice"
 Identifier "Generic Keyboard"
 Driver  "kbd"
 Option  "CoreKeyboard"
 Option  "XkbRules" "xorg"
 Option  "XkbModel" "pc105"
 Option  "XkbLayout" "us"
EndSection

Section "InputDevice"
 Identifier "Configured Mouse"
 Driver  "mouse"
 Option  "CorePointer"
 Option  "Device"  "/dev/input/mice"
 Option  "Protocol"  "ImPS/2"
 Option  "ZAxisMapping"  "4 5"
 Option  "Emulate3Buttons" "true"
EndSection

Section "InputDevice"
 Identifier "Synaptics Touchpad"
 Driver  "synaptics"
 Option  "SendCoreEvents" "true"
 Option  "Device"  "/dev/psaux"
 Option  "Protocol"  "auto-dev"
 Option  "HorizScrollDelta" "0"
EndSection

Section "InputDevice"
 Driver  "wacom"
 Identifier "stylus"
 Option  "Device" "/dev/input/wacom"
 Option  "Type"  "stylus"
 Option  "ForceDevice" "ISDV4"  # Tablet PC ONLY
EndSection

Section "InputDevice"
 Driver  "wacom"
 Identifier "eraser"
 Option  "Device" "/dev/input/wacom"
 Option  "Type"  "eraser"
 Option  "ForceDevice" "ISDV4"  # Tablet PC ONLY
EndSection

Section "InputDevice"
 Driver  "wacom"
 Identifier "cursor"
 Option  "Device" "/dev/input/wacom"
 Option  "Type"  "cursor"
 Option  "ForceDevice" "ISDV4"  # Tablet PC ONLY
EndSection

Section "Device"
 Identifier "vga0"
 Driver  "i810"
 BusID  "PCI:0:2:0"
 Screen  0
 Option  "DDC" "false"
 Option  "MonitorLayout" "CRT,LFP"
EndSection

Section "Device"
 Identifier "vga1"
 Driver  "i810"
 BusID  "PCI:0:2:0"
 Screen  1
 Option  "MonitorLayout" "CRT,LFP"
EndSection

Section "Monitor"
 Identifier "Monitor"
 Option  "DPMS"
 HorizSync 28-51
 VertRefresh 43-60
EndSection

Section "Monitor"
 Identifier "External Monitor"
 Option  "DPMS"
 HorizSync 30-61
 VertRefresh 56-75
EndSection

Section "Screen"
 Identifier "Screen0"
 Device  "vga0"
 Monitor  "Monitor"
 DefaultDepth 24
 SubSection      "Display"
  Depth  24
  Modes  "1280x800"
 EndSubSection
EndSection

Section "Screen"
 Identifier "Screen1"
 Device  "vga1"
 Monitor  "External Monitor"
 DefaultDepth 24
 SubSection      "Display"
  Depth  24
  Modes  "1024x768"
 EndSubSection
EndSection

Section "ServerLayout"
 Identifier "DualHead"
 Screen 0 "Screen0"
 Screen 1 "Screen1" RightOf "Screen0"
 Option  "Xinerama" "on"
 Option  "Clone" "off"

 InputDevice "Generic Keyboard"
 InputDevice "Configured Mouse"
 InputDevice     "stylus" "SendCoreEvents"
 InputDevice     "cursor" "SendCoreEvents"
 InputDevice     "eraser" "SendCoreEvents"
 InputDevice "Synaptics Touchpad"
EndSection

Section "DRI"
 Mode 0666
EndSection

Posted by shsch