Xorg and Dual Head Video?

Neal Hogan nealhogan at gmail.com
Wed Jul 8 12:46:50 UTC 2009


On Wed, Jul 8, 2009 at 7:16 AM, Gene<fbsd at brightstar.bomgardner.net> wrote:
> Hi All:
>
> I was wondering if anyone could point me toward any docs, or even better,
> how-tos on setting up Xorg using dual head video?

I use xrandr(1). Below is my xorg.conf.

HTH.

  1 Section "ServerLayout"
  2         Identifier     "X.org Configured"
  3         Screen      0  "Screen0" 0 0
  4         InputDevice    "Mouse0" "CorePointer"
  5         InputDevice    "Keyboard0" "CoreKeyboard"
  6 EndSection
  7
  8 Section "Files"
  9         ModulePath   "/usr/X11R6/lib/modules"
 10         FontPath     "/usr/X11R6/lib/X11/fonts/misc/"
 11         FontPath     "/usr/X11R6/lib/X11/fonts/TTF/"
 12         FontPath     "/usr/X11R6/lib/X11/fonts/OTF"
 13         FontPath     "/usr/X11R6/lib/X11/fonts/Type1/"
 14         FontPath     "/usr/X11R6/lib/X11/fonts/100dpi/"
 15         FontPath     "/usr/X11R6/lib/X11/fonts/75dpi/"
 16 EndSection
 17
 18 Section "Module"
 19         Load  "GLcore"
 20         Load  "dbe"
 21         Load  "dri"
 22         Load  "extmod"
 23         Load  "glx"
 24         Load  "record"
 25         Load  "xtrap"
 26         Load  "freetype"
 27         Load  "type1"
 28 EndSection
 29
 30 Section "InputDevice"
 31         Identifier  "Keyboard0"
 32         Driver      "kbd"
 33 EndSection
 34
 35 Section "InputDevice"
 36         Identifier  "Mouse0"
 37         Driver      "mouse"
 38         Option      "Protocol" "wsmouse"
 39         Option      "Device" "/dev/wsmouse"
 40         Option      "ZAxisMapping" "4 5 6 7"
 41 EndSection
 42
 43 Section "Monitor"
 44         Identifier   "Monitor0"
 45         VendorName   "Lenovo"
 46         ModelName    "T400"
 47 EndSection
 48
 49 Section "Monitor"
 50         Identifier   "Monitor1"
 51         VendorName   "LG"
 52         ModelName    "Flatron"
 53         Option       "DPMS"
 54 EndSection
 55
 56 Section "Device"
 57         ### Available Driver options are:-
 58         ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
 59         ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
 60         ### [arg]: arg optional
 61         #Option     "NoAccel"                   # [<bool>]
 62         #Option     "SWcursor"                  # [<bool>]
 63         #Option     "ColorKey"                  # <i>
 64         #Option     "CacheLines"                # <i>
 65         #Option     "Dac6Bit"                   # [<bool>]
 66         #Option     "DRI"                       # [<bool>]
 67         #Option     "NoDDC"                     # [<bool>]
 68         #Option     "ShowCache"                 # [<bool>]
 69         #Option     "XvMCSurfaces"              # <i>
 70         #Option     "PageFlip"                  # [<bool>]
 71         Identifier  "Card0"
 72         Driver      "intel"
 73         VendorName  "Intel"
 74         BoardName   "GM45 Video"
 75         BusID       "PCI:0:2:0"
 76         Option      "monitor-T400" "Monitor0"
 77         Option      "monitor-LG"   "Monitor1"
 78 EndSection
 79
 80 Section "Screen"
 81         Identifier "Screen0"
 82         Device     "Card0"
 83         #Monitor    "Monitor0"
 84         SubSection "Display"
 85                 Viewport   0 0
 86                 Depth     1
 87         EndSubSection
 88         SubSection "Display"
 89                 Viewport   0 0
 90                 Depth     4
 91         EndSubSection
 92         SubSection "Display"
 93                 Viewport   0 0
 94                 Depth     8
 95         EndSubSection
 96         SubSection "Display"
 97                 Viewport   0 0
 98                 Depth     15
 99         EndSubSection
100         SubSection "Display"
101                 Viewport   0 0
102                 Depth     16
103         EndSubSection
104         SubSection "Display"
105                 Virtual   2880 900
106                 Viewport   0 0
107                 Depth     24
108         EndSubSection
109 EndSection

>
> Thanks,
>
> IHN,
> Gene
>
> --
> To everything there is a season,
> And a time to every purpose under heaven.
>
> _______________________________________________
> freebsd-questions at freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "freebsd-questions-unsubscribe at freebsd.org"
>


More information about the freebsd-questions mailing list