DisplayLink usb no Ubuntu 12.04 no laptop

0

Eu gostaria de usar um displaylink usb UGA-2k-A rev b. (dl-195) no meu laptop com o Ubuntu 12.04 Eu tenho um x53s Asus com gráficos intel e nvidia Geforce GT 520MX 1GB. Eu li muitos posts sobre como configurar, mas meu problema ainda persiste.

Instalei o driver xserver-xorg-displaylink. O monitor fica verde, mas ainda tenho problema com o meu xorg.conf Esta é minha última tentativa.

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

E este é o resultado ... link

Onde está minha culpa? Agradecemos antecipadamente

    
por Michelantonio Stark Trizio 18.05.2013 / 22:32

1 resposta

0

#/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
    
por santa-little-helper 12.08.2013 / 09:25