Difference between revisions of "Talk:Engage 10"

From Bloominglabs
Jump to: navigation, search
(more is better?)
Line 2: Line 2:
 
A lot of it is written in first person, but I expect that to change as other people learn things or confirm my suspicions.  
 
A lot of it is written in first person, but I expect that to change as other people learn things or confirm my suspicions.  
  
here is my latest xorg.conf
+
here is my latest xorg.conf that supports 2 displaylink displays...
  
 
<pre>
 
<pre>

Revision as of 15:42, 14 December 2016

I have tried to copy everything in my brain about these devices to this page. A lot of it is written in first person, but I expect that to change as other people learn things or confirm my suspicions.

here is my latest xorg.conf that supports 2 displaylink displays...

Section "Device" 
  Identifier "displaylink device1" 
  driver "fbdev" 
  Option "fbdev" "/dev/fb1" 
  Option "ShadowFB" "off"
  Option "Monitor-VGA" "displaylink monitor1" 
EndSection 

Section "Device" 
  Identifier "displaylink device2" 
  driver "fbdev" 
  Option "fbdev" "/dev/fb2" 
  Option "ShadowFB" "off"
  Option "Monitor-VGA" "displaylink monitor2" 
EndSection 

Section "Modes"  
  Identifier "dlmodes" 
  Modeline "1024x600_60.00"   49.00  1024 1149 1245 1312  600 601 611 624 -hsync +vsync
  Modeline "1024x600R"   43.75  1024 1072 1104 1184  600 603 613 619 +hsync -vsync
EndSection

Section "Monitor" 
  Identifier "displaylink monitor1" 
  DisplaySize 221 129
  UseModes "dlmodes"
  Option "DPMS" "off"
EndSection 

Section "Monitor" 
  Identifier "displaylink monitor2" 
  DisplaySize 221 129
  UseModes "dlmodes"
  Option "DPMS" "off"
EndSection

Section "Screen"
  Identifier "displaylink screen1"
  Device "displaylink device1"
  Monitor "displaylink monitor1" 
  DefaultDepth    16
  SubSection "Display"
    Depth    16
    Modes     "1024x600_60.00"
  EndSubSection
EndSection

Section "Screen"
  Identifier "displaylink screen2"
  Device "displaylink device2"
  Monitor "displaylink monitor2"
  DefaultDepth    16
  SubSection "Display"
    Depth    16
    Modes     "1024x600_60.00"
  EndSubSection
EndSection

Section "ServerLayout" 
  Identifier "Default Layout"
  Screen 0 "displaylink screen1" 0 0 
  Screen 1 "displaylink screen2" RightOf "displaylink screen1"
EndSection

-mouse

Personal tools