From owner-freebsd-questions@FreeBSD.ORG Thu Jan 2 04:25:34 2014 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DCE58BF3 for ; Thu, 2 Jan 2014 04:25:34 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 89984125A for ; Thu, 2 Jan 2014 04:25:34 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.7/8.14.7) with ESMTP id s024PNf7075081; Wed, 1 Jan 2014 21:25:23 -0700 (MST) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.7/8.14.7/Submit) with ESMTP id s024PML0075078; Wed, 1 Jan 2014 21:25:22 -0700 (MST) (envelope-from wblock@wonkity.com) Date: Wed, 1 Jan 2014 21:25:22 -0700 (MST) From: Warren Block To: Ben Paley Subject: Re: VirtualBox and Xorg In-Reply-To: Message-ID: References: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Wed, 01 Jan 2014 21:25:23 -0700 (MST) Cc: freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 04:25:34 -0000 On Thu, 2 Jan 2014, Ben Paley wrote: > If I do startx with no configuration then I get a nice vanilla X but > the cursor doesn?t respond. If the desktop environment does not require it, build x11-servers/xorg-server with the HAL option off. Otherwise, add Option "AutoAddDevices" "Off" to the ServerLayout section of xorg.conf. This is the entire xorg.conf from a 9.1-STABLE VM (with HAL off): Section "ServerLayout" Identifier "xfce" InputDevice "Mouse1" # Option "AutoAddDevices" "Off" EndSection Section "InputDevice" Identifier "Mouse1" Driver "vboxmouse" EndSection Autoconfiguration of everything else works. The AutoAddDevices line is not present on mine, uncomment it to disable HAL.