Display Link 어댑터를 사용하여 트리플 모니터 설정

Display Link 어댑터를 사용하여 트리플 모니터 설정

내 첫 번째 질문은 "이 설정이 가능합니까?"입니다. 저는 Ubuntu 12.10이 설치된 Dell N7010을 실행하고 있으며 외부 모니터가 2개 있습니다. 그 중 하나는 VGA 케이블로 연결되어 완벽하게 작동하고 있습니다. 다른 하나는 DisplayLink 어댑터로 연결되어 있고 모니터에 녹색 화면이 나타납니다.

여기 제가 함께 해킹한 xorg.conf가 있습니다.

Section "ServerLayout"   
    Identifier      "threescreens"
    Screen          "VGA" 0 0
    Screen          "Laptop" RightOf "Laptop"
    Screen          "DisplayLink" LeftOf "Laptop" 0 0
    InputDevice     "keyboard" "CoreKeyboard"
    InputDevice     "mouse" "CorePointer"
EndSection

Section "Device"
   Identifier      "DisplayLinkDevice"
   Driver          "fbdev"
   BusID           "Video Bus"               # needed to use multiple DisplayLink devices 
   Option          "fbdev" "/dev/fb0"  # change to whatever device you want to use
  Option          "rotate" "CCW"      # uncomment for rotation
EndSection

Section "Monitor"
Identifier  "DisplayLink"
Device      "DisplayLinkDevice"
HorizSync   31-101
    VertRefresh 60-160
EndSection

Section "Screen"
    Identifier      "DisplayLink"
    Device          "Intel Corporation Core Processor Integrated Graphics Controller"
    DefaultDepth    24
    SubSection "Display"
        Depth           24
        Virtual         1680x1050
   EndSubSection
EndSection

Section "Monitor"
Identifier  "Laptop"
Device      "Intel Corporation Core Processor Integrated Graphics Controller"
HorizSync   31-101
    VertRefresh 60-160
EndSection

Section "Screen"
    Identifier      "Laptop"
    Device          "Intel Corporation Core Processor Integrated Graphics Controller"
    DefaultDepth    24
    SubSection "Display"
        Depth           24
        Virtual         1680x1050
    EndSubSection
EndSection

Section "Monitor"
Identifier  "VGA"
Device      "Intel Corporation Core Processor Integrated Graphics Controller"
HorizSync   31-101
    VertRefresh 60-160
EndSection

Section "Screen"
    Identifier      "VGA"
    Device          "Intel Corporation Core Processor Integrated Graphics Controller"
    DefaultDepth    24
    SubSection "Display"
        Depth           24
        Virtual         1680x1050
    EndSubSection
EndSection

부팅하면 모든 화면에 부팅 화면이 나타나지만 부팅이 완료되면 아무 화면도 표시되지 않고 켜져 있습니다. 여기서 내가 취할 수 있는 최선의 조치는 무엇입니까?

관련 정보