Header

  1. View current page

    rein님의 노트

Profile_img_60x60_01
1

ubuntu dual monitor howto (ATI)

간단한 시도: Use aticonfig

ati proprietary driver를 설치하면 aticonfig라는 유틸리티가 딸려온다.

xorg.conf를 복사해 온 후,

[rein@hyperion:~]> aticonfig --initial=dual-head --screen-layout=horizontal
해서 생성된 설정파일을 복사하니 종료

...

쉬운길을 돌아가면 안됨 -_-

 

주: 이 밑은 실패한 과정임

 

 일단 구글링 결과 나온 페이지: http://www.darkartistry.com/content/view/74/41/

 

기본적인 전제 조건은 하나, ATI에서 제공하는 proprietary driver를 써야함 (뭐 이건 상관없음(...))

위의 웹페이지를 따라간 과정

 

  1. xorg.conf 백업
  2. xorg.conf 수정 시작 (처음엔 kwrite가 뭔가 했다 -_-; )
    1. Section "Device" 확인:  driver가 fglrx (ATI proprietary driver)
      Section "Device"
          Identifier  "Generic Video Card"
          Driver      "fglrx"
          Busid       "PCI:1:0:0"
    2. fglrx info 확인
      [rein@hyperion:~]> fglrxinfo
      display: :0.0  screen: 0
      OpenGL vendor string: ATI Technologies Inc.
      OpenGL renderer string: Radeon X1950 Series
      OpenGL version string: 2.0.6334 (8.34.8)
    3. 3-d support test: 어쩌자고(...)
      [rein@hyperion:~]> fgl_glxgears
      Using GLX_SGIX_pbuffer
      9476 frames in 5.0 seconds = 1895.200 FPS
      10253 frames in 5.0 seconds = 2050.600 FPS
      [rein@hyperion:~]> glxgears
      64046 frames in 5.0 seconds = 12809.066 FPS
      80961 frames in 5.0 seconds = 16192.161 FPS
      84366 frames in 5.0 seconds = 16873.143 FPS
    4. xorg.conf - Device section 수정
      Section "Device"
          Identifier  "Generic Video Card"
          Driver      "fglrx"
          Busid       "PCI:1:0:0"
      EndSection

      에다가 듀얼 설정이 되게 엔트리 추가
      Section "Device"
          Identifier  "Generic Video Card"
          Driver      "fglrx"
          Busid       "PCI:1:0:0"
      #for dual monitor
          screen 0
          Option "MergedFB" "True"
          Option "EnablePageFlip" "True"
          Option "AGPMode" "4"
          Option "AGPFastWrite" "True"
          Option "MergedXineramaCRT2IsScreen0" "True"
          Option "CRT2Position" "RightOf"
      EndSection

      그리고 두번째 모니터에 관한 내용 추가
      # the 2nd device
      Section "Device"
          Identifier  "Generic Video Card2"
          Driver      "fglrx"
          Busid       "PCI:1:0:1"
          screen      1
      EndSection
    5. Monitor 관련 항목 추가: 별다른 내용이 없음, 그냥 항목 하나 추가
      Section "Monitor"
          Identifier  "750/751NF"
          Option      "DPMS"
      EndSection

      Section "Monitor"
          Identifier  "197T"
          Option      "DPMS"
      EndSection
    6. Screen관련 항목 추가(C&P한 내용이라 매우 길다 달라지는 부분만 씀)
      Section "Screen"
          Identifier  "Default Screen"
      # should match settings of first display (see Device, Monitor sectinos)
          Device      "Generic Video Card"
          Monitor     "197T"
          Defaultdepth    24
      # 잡다한 Display subsection들은 생략
      EndSection
      Section "Screen"
          Identifier  "Secondary Screen"
      # should match settings for second display
          Device      "Generic Video Card2"
          Monitor     "750/751NF"
          Defaultdepth    24
      # 잡다한 Display subsection들은 생략
      EndSection
    7. ServerLayout 수정
      원래 파일
      Section "ServerLayout"
          Identifier  "Default Layout"
          screen "Default Screen"
          Inputdevice "Generic Keyboard"
          Inputdevice "Configured Mouse"
          Inputdevice "stylus"    "SendCoreEvents"
          Inputdevice "cursor"    "SendCoreEvents"
          Inputdevice "eraser"    "SendCoreEvents"
      EndSection

      수정한 파일
      Section "ServerLayout"
          Identifier  "Default Layout"
          screen "Default Screen" 0 0
          screen "Secondary Screen" RightOf "Default Screen"
          Inputdevice "Generic Keyboard"
          Inputdevice "Configured Mouse"
          Inputdevice "stylus"    "SendCoreEvents"
          Inputdevice "cursor"    "SendCoreEvents"
          Inputdevice "eraser"    "SendCoreEvents"
      EndSection
    8. 재부팅 : 안되고 있음 원인을 찾아봐야 -_-

History

Last edited on 04/22/2007 00:12 by rein

Comments (0)

You must log in to leave a comment. Please sign in.