From owner-freebsd-questions@FreeBSD.ORG Sun May 17 23:35:49 2009 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C6E7A106566C; Sun, 17 May 2009 23:35:49 +0000 (UTC) (envelope-from chuckop@gmail.com) Received: from mail-pz0-f105.google.com (mail-pz0-f105.google.com [209.85.222.105]) by mx1.freebsd.org (Postfix) with ESMTP id 8F4F98FC15; Sun, 17 May 2009 23:35:49 +0000 (UTC) (envelope-from chuckop@gmail.com) Received: by pzk3 with SMTP id 3so1934335pzk.3 for ; Sun, 17 May 2009 16:35:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :content-type:content-transfer-encoding; bh=sFIHfIY3Tc/PCwVphsBBx3caTVrnhySPuJd18T3UY20=; b=tjOaaUGBKy4/G0c0ny1l7oGZ18o0yTLEQDXhye43bjOZU+Gb4NoAVyGgvyjb2PYQ1M TTNx7OC9zLzEEm1zoWzJPuCOaWbJWikCTqc46rUkdAfv3rezPa9pTLWh90LfERneHi5I 8dBkLN4aEoOFE2nxzF8h2hoH3q9dvH9XQtJ7U= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; b=HTTPBrF1pyQKaedSERBhDOvUjTLG5P8kNNZPK17nJf6bu1iHY9WpOjozLQn6+mint4 Fv5TjaO+kt23PENInu9EjdguMkmJitMfgMJnbwj8xdvrhsTP+UY6NfR/UolGiBGQBN78 Ehq7ifkBkghF51d4anjX7p4iHAeH1hNYdza7I= Received: by 10.114.208.20 with SMTP id f20mr9676343wag.225.1242601552409; Sun, 17 May 2009 16:05:52 -0700 (PDT) Received: from think.coppersoftware.com (pool-71-112-39-137.sttlwa.dsl-w.verizon.net [71.112.39.137]) by mx.google.com with ESMTPS id j31sm4135710waf.62.2009.05.17.16.05.51 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sun, 17 May 2009 16:05:51 -0700 (PDT) Message-ID: <4A10984E.6070103@gmail.com> Date: Sun, 17 May 2009 16:05:50 -0700 From: Charles Oppermann User-Agent: Thunderbird 2.0.0.21 (X11/20090421) MIME-Version: 1.0 To: "Jin Guojun[VFF]" References: <4A104825.8060509@gmail.com> In-Reply-To: <4A104825.8060509@gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: questions@freebsd.org, x11@freebsd.org Subject: Re: kdb and mouse are disabled on HP Pavilion dv5210us by X.org 7.4.1 (7.2-R) 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: Sun, 17 May 2009 23:35:50 -0000 Jin Guojun[VFF] wrote: > When installed FreeBSD 7.2 release with xorg-7.4.1, the X server does > not work on > HP Pavilion dv5210us laptop due to the key board and mouse are disabled > somehow. > Some Hot keys (Ctrl-Altr-F#) are working but mouse is not movable and > cannot type in a Xterm. A quick search should indicate the solution. Xorg prefers using HALD for hardware access. If the Hal Daemon isn't running, regular keyboard/mouse input won't work. You can add the following to /etc/rc.conf to automatically start the HAL and DBus daemons: dbus_enable="YES" hald_enable="YES" After adding, use the following commands to start the services: /usr/local/etc/rc.d/dbus start /user/local/etc/rc.d/hald start Alternatively, you can add the following line to the ServerLayout section of your /etc/X11/xorg.conf file: Option "AllowEmptyInput" "false" Hope this helps.