From owner-freebsd-questions@FreeBSD.ORG Thu Jul 10 01:55:26 2008 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 3F71D1065671 for ; Thu, 10 Jul 2008 01:55:26 +0000 (UTC) (envelope-from gnemmi@gmail.com) Received: from yw-out-2324.google.com (yw-out-2324.google.com [74.125.46.29]) by mx1.freebsd.org (Postfix) with ESMTP id DDB648FC1C for ; Thu, 10 Jul 2008 01:55:25 +0000 (UTC) (envelope-from gnemmi@gmail.com) Received: by yw-out-2324.google.com with SMTP id 9so1324025ywe.13 for ; Wed, 09 Jul 2008 18:55:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:subject:date :user-agent:references:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:message-id; bh=A6ZTnFtp1cV+B+LCJCyQp6PRKVt1foXoHs9dJEw8NHE=; b=p6CE2+ieOf8bvqd5F8UHF/1ORDTPB4rZ+j5KknoLff4By80JkhQcg/JMU6XwFO3AnJ GXDht7b+OlPw4UkSM7FakjYidcdeKyCTR0RDiVcQrYmF6KWkMQq69JZhpQI9/OMoE050 RKS4EvxR2naS+EuwnhrPNA4Fu7RumY3JhiFsw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:subject:date:user-agent:references:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :message-id; b=Ue1Qbw6lvwu5I6iDD7MOsehlQLtEv27OTYpkDpIGzTEKwMpQw9x1O4UO6pWX4VPn7w cuWuU/ZBZ72jKKzYugagTmtln0ZGo9nCJEzhZ3SxkxtfYzaGmNaTKeDedoBMIPzhYuRb y0HlH0EtwK2ThWXktEQCEPHadB3bmTEM4gKO8= Received: by 10.150.84.17 with SMTP id h17mr13490159ybb.201.1215654923158; Wed, 09 Jul 2008 18:55:23 -0700 (PDT) Received: from 200-117-245-190.fibertel.com.ar ( [190.245.117.200]) by mx.google.com with ESMTPS id 9sm6146834yws.5.2008.07.09.18.55.21 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 09 Jul 2008 18:55:22 -0700 (PDT) From: Gonzalo Nemmi To: freebsd-questions@freebsd.org Date: Wed, 9 Jul 2008 22:55:16 -0300 User-Agent: KMail/1.9.7 References: <3b93bd110807091833s3cd3fe17o566087bfdc22c4a3@mail.gmail.com> In-Reply-To: <3b93bd110807091833s3cd3fe17o566087bfdc22c4a3@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200807092255.16525.gnemmi@gmail.com> Subject: Re: Set up keymap 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: Thu, 10 Jul 2008 01:55:26 -0000 On Wednesday 09 July 2008 22:33:29 Diego F. Arias R. wrote: > Hi: > > I have installed XFCE on my freebsd but i dont know why my X keymap is > wrong. I need latam on a normal console works but not in X how can i > change the keymap? > > > Thanks ls /usr/share/syscons/keymaps/ Pick the one you need and set xorg.conf accordingly: I'm using an english keayboard with international accents (my native tongue= is=20 spanish so I need =C3=A1,=C3=A9,=C3=AD,=C3=B3,=C3=BA,=C3=BC and =C3=B1 .. b= ut I also need portuguese chars like=20 =C3=A7 and =C3=A3, =C3=AA, =C3=B4 and so on ...). Here's my "InputDevice" section in xorg.conf Section "InputDevice" Identifier "Keyboard0" Driver "kbd" Option "XkbModel" "pc105" Option "XkbLayout" "us(alt-intl)" Option "XkbOptions" "compose:rwin" EndSection If you have a spanish or latam keyboard, you'll probably need=20 latinamerican.iso.acc.kbd ... or latinamerican.kbd ... Maybe=20 spanish.iso15.acc.kbd .. play around with those until you find the one that= =20 better suits your needs :) Ultimate, and only authoritative, answer will be available at: man 4 kbd Regards =2D-=20 Blessings Gonzalo Nemmi