From owner-freebsd-x11@FreeBSD.ORG Tue Feb 3 17:07:07 2004 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF62116A4CF for ; Tue, 3 Feb 2004 17:07:07 -0800 (PST) Received: from tomts10-srv.bellnexxia.net (tomts10.bellnexxia.net [209.226.175.54]) by mx1.FreeBSD.org (Postfix) with ESMTP id D2D0943D45 for ; Tue, 3 Feb 2004 17:07:04 -0800 (PST) (envelope-from louismunro@altern.org) Received: from [192.168.0.4] ([67.68.88.53]) by tomts10-srv.bellnexxia.net ESMTP <20040204010701.UTZC23158.tomts10-srv.bellnexxia.net@[192.168.0.4]> for ; Tue, 3 Feb 2004 20:07:01 -0500 From: Louis Munro To: freebsd-x11@freebsd.org Date: Tue, 3 Feb 2004 20:06:57 -0500 User-Agent: KMail/1.5.4 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200402032006.57366.louismunro@altern.org> Subject: xinerama setup on kde 3.1.4 X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Feb 2004 01:07:07 -0000 Hello everyone, I'm trying to setup KDE to display in full xinerama on my new computer. I have an nvidia GFX5600 which is capable of displaying on two monitors (I've got it working with windows Xp) but I can't seems to get it right on FreeBSD: X only displays on one monitor and just blanks out the other. So I have a few questions: --Do I have to compile Xfree86 with some special arguments to enable xinerama? I installed it from the cd (4.9 stable, world remade about a week ago). --Does KDE 3.1.4 support xinerama? Do I have to do anything special to enable it? --I haven't found all that much information about configuring xinerama. Have I missed anything? I'm appending my XFree86config so you guys can tell me if it's something in there that's incorrect. Thanks for your help. Louis # XFree86config-XINERAMA # ********************************************************************** # Module section -- this section is used to specify # which dynamically loadable modules to load. # ********************************************************************** # Section "Module" Load "dbe" # Double buffer extension SubSection "extmod" Option "omit xfree86-dga" # don't initialise the DGA extension EndSubSection Load "type1" Load "speedo" # Load "freetype" # Load "xtt" Load "glx" # Load "dri" EndSection # ********************************************************************** # Files section. This allows default font and rgb paths to be set # ********************************************************************** Section "Files" RgbPath "/usr/X11R6/lib/X11/rgb" FontPath "/usr/X11R6/lib/X11/fonts/local/" FontPath "/usr/X11R6/lib/X11/fonts/misc/" FontPath "/usr/X11R6/lib/X11/fonts/75dpi/:unscaled" FontPath "/usr/X11R6/lib/X11/fonts/100dpi/:unscaled" FontPath "/usr/X11R6/lib/X11/fonts/Speedo/" FontPath "/usr/X11R6/lib/X11/fonts/Type1/" # FontPath "/usr/X11R6/lib/X11/fonts/TrueType/" # FontPath "/usr/X11R6/lib/X11/fonts/freefont/" FontPath "/usr/X11R6/lib/X11/fonts/75dpi/" FontPath "/usr/X11R6/lib/X11/fonts/100dpi/" # The module search path. The default path is shown here. # ModulePath "/usr/X11R6/lib/modules" EndSection # ********************************************************************** # Server flags section. # ********************************************************************** #Section "ServerFlags" #EndSection # ********************************************************************** # Input devices # ********************************************************************** # ********************************************************************** # Core keyboard's InputDevice section # ********************************************************************** Section "InputDevice" Identifier "Keyboard1" Driver "Keyboard" Option "AutoRepeat" "500 30" Option "XkbRules" "xfree86" Option "XkbModel" "microsoftinet" Option "XkbLayout" "ca_enhanced" EndSection # ********************************************************************** # Core Pointer's InputDevice section # ********************************************************************** Section "InputDevice" # Identifier and driver Identifier "Mouse1" Driver "mouse" Option "Protocol" "Auto" Option "Device" "/dev/sysmouse" Option "ZAxisMapping""4 5" EndSection # ********************************************************************** # Monitor section # ********************************************************************** # Any number of monitor sections may be present Section "Monitor" Identifier "IBM G78" HorizSync 30-85 VertRefresh 50-160 EndSection Section "Monitor" Identifier "KTX topscan 15" HorizSync 31.5-60 VertRefresh 40-110 EndSection # ********************************************************************** # Graphics device section # ********************************************************************** # Any number of graphics device sections may be present Section "Device" Identifier "GFX5600-0" Driver "nv" BusID "PCI:1:0:0" #VideoRam 131072 # Insert Clocks lines here if appropriate EndSection Section "Device" Identifier "GFX5600-1" Driver "nv" BusID "PCI:1:0:0" #VideoRam 131072 # Insert Clocks lines here if appropriate EndSection # ********************************************************************** # Screen sections # ********************************************************************** # Any number of screen sections may be present. Each describes # the configuration of a single screen. A single specific screen section # may be specified from the X server command line with the "-screen" # option. Section "Screen" Identifier "Screen 1" Device "GFX5600-0 Monitor "IBM G78" DefaultDepth 16 Subsection "Display" Depth 16 Modes "1280x1024" "1024x768" ViewPort 0 0 EndSubsection EndSection Section "Screen" Identifier "Screen 2" Device "GFX5600-1" Monitor "KTX topscan 15" DefaultDepth 16 Subsection "Display" Depth 16 Modes "1280x1024" "1024x768" ViewPort 0 0 EndSubsection EndSection # ********************************************************************** # ServerLayout sections. # ********************************************************************** # Any number of ServerLayout sections may be present. Each describes # the way multiple screens are organised. A specific ServerLayout # section may be specified from the X server command line with the # "-layout" option. In the absence of this, the first section is used. # When now ServerLayout section is present, the first Screen section # is used alone. Section "ServerLayout" # The Identifier line must be present Identifier "xinerama" Screen "Screen 1" Screen "Screen 2" Rightof "Screen 1" InputDevice "Mouse1" "CorePointer" InputDevice "Keyboard1" "CoreKeyboard" Option "Xinerama" "true" EndSection # Section "DRI" # Mode 0666 # EndSection