DisplayLinkモニターとIntel

DisplayLinkモニターとIntel

私は、カスタム 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 ディスプレイにはコンソール出力のみが表示されます。

関連情報