hello everybody,<br><br>As say in title I try to have a third screen with a displayLink device (USB to VGA form Konig) in order to have an extended desktop on three screens<br>I follow those steps <a href="http://blogg.noonday.se/2010/01/28/linux-usb-video-adapter/">http://blogg.noonday.se/2010/01/28/linux-usb-video-adapter/</a><br>
udlfb & xf86-video-displaylink are correctly installed (I used this patch to get the last working <a href="http://git.plugable.com/gitphp/index.php?p=xf-video-udlfb&a=blobdiff&h=11f2e6b9f9790d0c362a196d19419f202a40a512&hp=212e11fb358b413628acca6ffb61041b7a166d1e&hb=ace449b4d1f51e3ac94636a82ad56f80e6870ba4&f=src/displaylink.c">http://git.plugable.com/gitphp/index.php?p=xf-video-udlfb&a=blobdiff&h=11f2e6b9f9790d0c362a196d19419f202a40a512&hp=212e11fb358b413628acca6ffb61041b7a166d1e&hb=ace449b4d1f51e3ac94636a82ad56f80e6870ba4&f=src/displaylink.c</a>).<br>
I had no /etc/X11/xorg.conf so I generated one with Xorg - confgure which is<br><br>Section "ServerLayout"<br> Identifier "X.org Configured"<br> Screen 0 "Screen0" 0 0<br> InputDevice "Mouse0" "CorePointer"<br>
InputDevice "Keyboard0" "CoreKeyboard"<br>EndSection<br><br>Section "Files"<br> ModulePath "/usr/lib/xorg/modules"<br> FontPath "/usr/share/fonts/X11/misc"<br>
FontPath "/usr/share/fonts/X11/cyrillic"<br> FontPath "/usr/share/fonts/X11/100dpi/:unscaled"<br> FontPath "/usr/share/fonts/X11/75dpi/:unscaled"<br> FontPath "/usr/share/fonts/X11/Type1"<br>
FontPath "/usr/share/fonts/X11/100dpi"<br> FontPath "/usr/share/fonts/X11/75dpi"<br> FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"<br> FontPath "built-ins"<br>
EndSection<br><br>Section "Module"<br> Load "dbe"<br> Load "dri"<br> Load "dri2"<br> Load "extmod"<br> Load "record"<br> Load "glx"<br>
EndSection<br><br>Section "InputDevice"<br> Identifier "Keyboard0"<br> Driver "kbd"<br>EndSection<br><br>Section "InputDevice"<br> Identifier "Mouse0"<br> Driver "mouse"<br>
Option "Protocol" "auto"<br> Option "Device" "/dev/input/mice"<br> Option "ZAxisMapping" "4 5 6 7"<br>EndSection<br><br>Section "Monitor"<br>
Identifier "Monitor0"<br> VendorName "Monitor Vendor"<br> ModelName "Monitor Model"<br>EndSection<br><br>Section "Device"<br> ### Available Driver options are:-<br>
### Values: <i>: integer, <f>: float, <bool>: "True"/"False",<br> ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",<br> ### <percent>: "<f>%"<br>
### [arg]: arg optional<br> #Option "SWcursor" # [<bool>]<br> #Option "HWcursor" # [<bool>]<br> #Option "NoAccel" # [<bool>]<br>
#Option "ShadowFB" # [<bool>]<br> #Option "VideoKey" # <i><br> Identifier "Card0"<br> Driver "nouveau"<br>
BusID "PCI:1:0:0"<br>EndSection<br><br>Section "Screen"<br> Identifier "Screen0"<br> Device "Card0"<br> Monitor "Monitor0"<br> SubSection "Display"<br>
Viewport 0 0<br> Depth 1<br> EndSubSection<br> SubSection "Display"<br> Viewport 0 0<br> Depth 4<br> EndSubSection<br> SubSection "Display"<br> Viewport 0 0<br>
Depth 8<br> EndSubSection<br> SubSection "Display"<br> Viewport 0 0<br> Depth 15<br> EndSubSection<br> SubSection "Display"<br> Viewport 0 0<br> Depth 16<br>
EndSubSection<br> SubSection "Display"<br> Viewport 0 0<br> Depth 24<br> EndSubSection<br>EndSection<br><br>I tried to adapt with what i Read like this <br><br>Section "ServerLayout"<br>
Identifier "X.org Configured"<br> Screen 0 "Screen0" 0 0<br> Screen 1 "Screen0" LeftOf "DisplayLinkScreen"<br> Option "Xinerama" "off"<br>
EndSection<br><br>Section "Files"<br> ModulePath "/usr/lib/xorg/modules"<br> FontPath "/usr/share/fonts/X11/misc"<br> FontPath "/usr/share/fonts/X11/cyrillic"<br>
FontPath "/usr/share/fonts/X11/100dpi/:unscaled"<br> FontPath "/usr/share/fonts/X11/75dpi/:unscaled"<br> FontPath "/usr/share/fonts/X11/Type1"<br> FontPath "/usr/share/fonts/X11/100dpi"<br>
FontPath "/usr/share/fonts/X11/75dpi"<br> FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"<br> FontPath "built-ins"<br>EndSection<br><br>Section "Module"<br>
Load "dbe"<br> Load "dri"<br> Load "dri2"<br> Load "extmod"<br> Load "record"<br> Load "glx"<br>EndSection<br><br>Section "Monitor"<br>
Identifier "Monitor0"<br> VendorName "Monitor Vendor"<br> ModelName "Monitor Model"<br>EndSection<br><br>Section "Device"<br> ### Available Driver options are:-<br>
### Values: <i>: integer, <f>: float, <bool>: "True"/"False",<br> ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",<br> ### <percent>: "<f>%"<br>
### [arg]: arg optional<br> #Option "SWcursor" # [<bool>]<br> #Option "HWcursor" # [<bool>]<br> #Option "NoAccel" # [<bool>]<br>
#Option "ShadowFB" # [<bool>]<br> #Option "VideoKey" # <i><br> Identifier "Card0"<br> Driver "nouveau"<br>
BusID "PCI:1:0:0"<br>EndSection<br><br>Section "Screen"<br> Identifier "Screen0"<br> Device "Card0"<br> Monitor "Monitor0"<br> SubSection "Display"<br>
Viewport 0 0<br> Depth 1<br> EndSubSection<br> SubSection "Display"<br> Viewport 0 0<br> Depth 4<br> EndSubSection<br> SubSection "Display"<br> Viewport 0 0<br>
Depth 8<br> EndSubSection<br> SubSection "Display"<br> Viewport 0 0<br> Depth 15<br> EndSubSection<br> SubSection "Display"<br> Viewport 0 0<br> Depth 16<br>
EndSubSection<br> SubSection "Display"<br> Viewport 0 0<br> Depth 24<br> EndSubSection<br>EndSection<br>#################################################<br><br>Section "Files"<br>
ModulePath "/usr/lib/xorg/modules"<br> ModulePath "/usr/local/lib/xorg/modules"<br> ModulePath "/usr/local/lib/xorg/modules/drivers"<br>EndSection<br><br>############### DisplayLink Stuff ###############<br>
<br>Section "Device"<br> Identifier "DisplayLinkDevice"<br> driver "displaylink"<br> Option "fbdev" "/dev/fb1"<br>EndSection<br><br>Section "Monitor"<br>
Identifier "DisplayLinkMonitor"<br>EndSection<br><br>Section "Screen"<br> Identifier "DisplayLinkScreen"<br> Device "DisplayLinkDevice"<br> Monitor "DisplayLinkMonitor"<br>
SubSection "Display"<br> Depth 16<br> Modes "1024x768"<br> EndSubSection<br>EndSection<br><br>I have a green screen on the screen connected to the displayLink device, but no third screen for my extended desktop<br>
Have you any suggestion in which way I shoud search?<br>Can I know if my device is supported?<br><br>Thanks for your suggestions<br><br>regards (and sorry for my bad english)<br><br><br><br><br><br>