Intel과 함께하는 DisplayLink 모니터

Intel과 함께하는 DisplayLink 모니터

사용자 정의 Xorg 구성 파일로 작업할 수 있는 USB DisplayLink 장치가 있습니다. 저는 saucy X 서버와 커널을 설치한 결과 saucy의 X 서버와 함께 Ubuntu 12.04 amd64를 실행하고 있습니다.

sudo apt-get install --install-recommends xserver-xorg-lts-raring

저는 다음 커널과 X 버전을 실행하고 있습니다.

X.Org X Server 1.14.5
Release Date: 2013-12-12
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.42-37-generic x86_64 Ubuntu
Current Operating System: Linux chromeriver-laptop-tkocheran 3.11.0-20-generic #35~precise1-Ubuntu SMP Fri May 2 21:32:55 UTC 2014 x86_64
Kernel command line: BOOT_IMAGE=/vmlinuz-3.11.0-20-generic root=/dev/mapper/vgcryptotop-lvcryptotoproot ro cryptopts=target=cryptotop,source=/dev/disk/by-uuid/c7278631-aca2-47dd-a48f-44c1a5380e5f,lvm=vgcryptotop acpi_backlight=vendor dell_laptop.backlight=0 quiet splash
Build Date: 06 January 2014  01:37:48PM
xorg-server 2:1.14.5-1ubuntu2~saucy1~precise2 (For technical support please see http://www.ubuntu.com/support) 
Current version of pixman: 0.30.2
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.

핵심:

3.11.0-20-generic

현재 겪고 있는 문제는 외부 DisplayPort와 외부 USB DisplayLink 디스플레이를 동시에 사용할 수 없다는 것입니다. 나는 사용할 수 있다어느 하나USB DisplayLink 디스플레이또는DisplayPort 디스플레이를 표시하지만 동시에 두 가지를 동시에 표시할 수는 없습니다.

내 /etc/X11/xorg.conf 파일은 다음과 같습니다.

Section "ServerLayout"
        Identifier      "Server Layout"
        Screen  0       "DisplayLinkScreen" 0 0
        Screen  1       "DefaultScreen" LeftOf "DisplayLinkScreen"
        #Option          "Xinerama" "On"
EndSection

Section "Device"
        Identifier      "Configured Video Device"
        Driver          "intel"
EndSection

Section "Monitor"
        Identifier      "Configured Monitor"
EndSection

Section "Screen"
        Identifier      "DefaultScreen"
        Monitor         "Configured Monitor"
        Device          "Configured Video Device"
        #DefaultDepth    16
        SubSection "Display"
                Depth   16
                Modes   "1920x1080"
        EndSubSection
EndSection

Section "Device"
        Identifier "DisplayLinkDevice"
        driver  "fbdev"
        Option  "fbdev" "/dev/fb1"
EndSection

Section "Monitor"
        Identifier      "DisplayLinkMonitor"
EndSection

Section "Screen"
        Identifier      "DisplayLinkScreen"
        Device          "DisplayLinkDevice"
        Monitor         "DisplayLinkMonitor"
        #DefaultDepth    16
        SubSection "Display"
            Depth   16
            Modes   "1920x1080"
        EndSubSection
EndSection

아이디어는 단순히 듀얼 디스플레이 시스템을 갖는 것입니다. 두 디스플레이를 모두 시작할 수 없는 이유에 대한 아이디어가 있습니까? 현재 위 설정에서는 DisplayLink USB 디스플레이만 실행되고 Intel 디스플레이는 콘솔 출력만 표시됩니다.

관련 정보