笔记本电脑上的 ubuntu 12.04 上的 DisplayLink usb

笔记本电脑上的 ubuntu 12.04 上的 DisplayLink usb

我想在装有 ubuntu 12.04 的笔记本电脑上使用 displaylink usb UGA-2k-A rev b. (dl-195)。我有一台装有英特尔显卡和 nvidia Geforce GT 520MX 1GB 的华硕 x53s。我读了很多关于如何配置的帖子,但我的问题仍然存在。

我已经安装了 xserver-xorg-displaylink 驱动程序。显示器变绿了,但我的 xorg.conf 仍然有问题。这是我的最后一次尝试。

Section "ServerLayout"
    Identifier     "X.org Configured"
    Screen      0  "DisplayLinkScreen" 1280 0
    Screen      1  "Screen0" RightOf "DisplayLinkScreen"
        Option         "Xinerama" "off" 
EndSection
Section "ServerFlags"
    Option       "RandR" "on"
EndSection

Section "Files"
    ModulePath   "/usr/lib/xorg/modules"
    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"
    FontPath     "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
    FontPath     "built-ins"
EndSection

Section "Monitor"
Identifier   "Monitor0"
VendorName   "Monitor Vendor"
ModelName    "Monitor Model"
EndSection

Section "Device"
Identifier  "Card0"
Driver      "intel"
BusID       "PCI:0:2:0"
EndSection

Section "Screen"
Identifier "Screen0"
Device     "Card0"
Monitor    "Monitor0"
SubSection "Display"
    Viewport   0 0
    Depth     1
EndSubSection
SubSection "Display"
    Viewport   0 0
    Depth     4
EndSubSection
SubSection "Display"
    Viewport   0 0
    Depth     8
EndSubSection
SubSection "Display"
    Viewport   0 0
    Depth     15
EndSubSection
SubSection "Display"
    Viewport   0 0
    Depth     16
EndSubSection
SubSection "Display"
    Viewport   0 0
    Depth     24
EndSubSection
EndSection

############### DisplayLink Stuff ###############                                                                 

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

Section "Monitor"
    Identifier      "DisplayLinkMonitor"
EndSection

Section "Screen"
    Identifier      "DisplayLinkScreen"
Device          "DisplayLinkDevice"
    Monitor         "DisplayLinkMonitor"
   # SubSection "Display"
   #         Depth   24
   #        Modes   "1280x1024"
   # EndSubSection
EndSection

结果如下...https://docs.google.com/file/d/0ByBQOgnmD50pcS1PYTZ1WlJCSGc/edit?usp=sharing

我的错在哪里?提前谢谢

答案1

#/usr/share/X11/xorg.conf.d/52-displaylink.conf
Section "Device"
   Identifier      "intel"
   driver          "intel"
   Option "monitor-LVDS1" "monitor2"
   Option "monitor-VGA1" "monitor1"
EndSection

Section "Device"
   Identifier      "dl1"
   driver          "displaylink"
   Option  "fbdev" "/dev/fb1"
EndSection

Section "Monitor"
   Identifier "monitor0"
   Option "PreferredMode" "1920x1080"
EndSection

Section "Monitor"
   Identifier "monitor1"
   Option "RightOf" "monitor2"
   Option "PreferredMode" "1920x1080"
EndSection

Section "Monitor"
   Identifier "monitor2"
   Option "PreferredMode" "1366x768"
EndSection

Section "Screen"
   Identifier "screen0"
   Device "dl1"
   Monitor "monitor0"
   DefaultDepth 16
EndSection

Section "Screen"
   Identifier "screen1"
   Device "intel"
   Monitor "monitor1"
   DefaultDepth 16
EndSection

Section "ServerLayout"
   Identifier     "multihead"
   Screen      0  "screen0" 0 0
   Screen      1  "screen1" LeftOf "screen0"
   Option    "Xinerama" "on"
EndSection

相关内容