DisplayLink USB на Ubuntu 12.04 на ноутбуке
Я хотел бы использовать DisplayLink USB UGA-2K-A Rev B. (dl-195) на моем ноутбуке с Ubuntu 12.04 У меня Asus x53s с графикой Intel и NVIDIA Geforce GT 520MX 1 ГБ. Я прочитал много постов о том, как настроить, но моя проблема все еще сохраняется.
Я установил драйвер 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