From owner-freebsd-questions@FreeBSD.ORG Mon Nov 16 17:27:48 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 2A5A6106566C for ; Mon, 16 Nov 2009 17:27:48 +0000 (UTC) (envelope-from freebsdmail@gmx.de) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.freebsd.org (Postfix) with SMTP id 5E0518FC13 for ; Mon, 16 Nov 2009 17:27:45 +0000 (UTC) Received: (qmail invoked by alias); 16 Nov 2009 17:01:04 -0000 Received: from dslb-188-097-133-243.pools.arcor-ip.net (EHLO localhost) [188.97.133.243] by mail.gmx.net (mp062) with SMTP; 16 Nov 2009 18:01:04 +0100 X-Authenticated: #14495869 X-Provags-ID: V01U2FsdGVkX18ONUkibykO5dSlLFiDOAt/s0haIYVC/nibEit+zU U2UGjMVk1daVLd Date: Mon, 16 Nov 2009 18:01:02 +0100 From: Philipp Lengemann To: "Ronald F. Guilmette" Message-ID: <20091116180102.61682ee8@gmx.de> In-Reply-To: <42052.1258327169@tristatelogic.com> References: <42052.1258327169@tristatelogic.com> X-Mailer: Claws Mail 3.7.2 (GTK+ 2.16.6; amd64-portbld-freebsd8.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 X-FuHaFi: 0.57 Cc: freebsd-questions@freebsd.org Subject: Re: Trivial questions about CNTL-ALT-DEL and CNTL-ALT-BACKSPACE 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: Mon, 16 Nov 2009 17:27:48 -0000 Am Sun, 15 Nov 2009 15:19:29 -0800 schrieb "Ronald F. Guilmette" : > I _did_ go and read the Handbook section that Manolis Kiagias > kindly posted a link to, and I have now tried _both_ of the two > ways described there to re-enable CNTL-ALT-BACKSPACE functionality > for the X server, and sadly I must report that for me, at least > _neither_ of those methods worked Put the following to your xorg.conf: Section "ServerFlags" Option "DontZap" "off" Option "AllowEmptyInput" "off" Option "AutoAddDevices" "off" EndSection Section "InputDevice" Option "XkbOptions" "terminate:ctrl_alt_bksp" EndSection This works for me very reliable (xorg-7.4_2). HTH