From owner-freebsd-questions@FreeBSD.ORG Wed Jul 8 12:46:50 2009 Return-Path: Delivered-To: FreeBSD-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5C9E0106566C for ; Wed, 8 Jul 2009 12:46:50 +0000 (UTC) (envelope-from nealhogan@gmail.com) Received: from mail-yx0-f181.google.com (mail-yx0-f181.google.com [209.85.210.181]) by mx1.freebsd.org (Postfix) with ESMTP id 149168FC19 for ; Wed, 8 Jul 2009 12:46:49 +0000 (UTC) (envelope-from nealhogan@gmail.com) Received: by yxe11 with SMTP id 11so8059793yxe.3 for ; Wed, 08 Jul 2009 05:46:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=0rPAVQmcAWD6+d8RdRPdaarJfa4a42YT2+Ag3NBQwlM=; b=UtJfTwM4497VWu0gHO5XVJi02En7GfNSx+TYyI6WQA1ChgX6mnvhKXfBfRF3eKGG1e SqWrlw5WBv9UztYCoZZHgI0vcpQkp4PFv/PoY+E+VyMdBaamSBAZv0Tsvbv1uMB1yBwj HpJDJoDTmyWEKu/0sRhMSB7Vi4/JzI6Zwtutk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=etcrva3d2k9AFH/CWDs1Hkrp+w7USla3NPAAz8Rte6ol44GOLo4kPeP315qE9ZjxRo helpEsrXXsuIlWLLfqbLK0SIjTpwChMmQlOR3aXpZq5lH5PUR5+FamAk+qPUIKgbz/Ol Sq5+7M05HJoxVbjSZD9A6A/X5dsyv4c2WPwqc= MIME-Version: 1.0 Received: by 10.151.114.13 with SMTP id r13mr1890345ybm.169.1247057209394; Wed, 08 Jul 2009 05:46:49 -0700 (PDT) In-Reply-To: <20090708121347.M52792@brightstar.bomgardner.net> References: <20090708121347.M52792@brightstar.bomgardner.net> Date: Wed, 8 Jul 2009 07:46:49 -0500 Message-ID: From: Neal Hogan To: Gene Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: FreeBSD-questions@freebsd.org Subject: Re: Xorg and Dual Head Video? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Jul 2009 12:46:50 -0000 On Wed, Jul 8, 2009 at 7:16 AM, Gene 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: : integer, : float, : "True"/"False", 59 ### : "String", : " Hz/kHz/MHz" 60 ### [arg]: arg optional 61 #Option "NoAccel" # [] 62 #Option "SWcursor" # [] 63 #Option "ColorKey" # 64 #Option "CacheLines" # 65 #Option "Dac6Bit" # [] 66 #Option "DRI" # [] 67 #Option "NoDDC" # [] 68 #Option "ShowCache" # [] 69 #Option "XvMCSurfaces" # 70 #Option "PageFlip" # [] 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@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" >