From owner-freebsd-questions@FreeBSD.ORG Thu Nov 10 20:49:17 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0543616A41F for ; Thu, 10 Nov 2005 20:49:17 +0000 (GMT) (envelope-from aekelly@gmail.com) Received: from xproxy.gmail.com (xproxy.gmail.com [66.249.82.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A7BB43D45 for ; Thu, 10 Nov 2005 20:49:16 +0000 (GMT) (envelope-from aekelly@gmail.com) Received: by xproxy.gmail.com with SMTP id t12so365680wxc for ; Thu, 10 Nov 2005 12:49:16 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=NZ8klpZsrRqvexjKUUMRppn4XqVL8IYkWYWdaecp4p7bk5wF+3phJQZeygj1TKM/6yaLgBgUvt+xFBKgMfEUgSLNeNwcyEFJOyM3aGMtA9ZYzgxI0bL8fADkmOfpx4avqfxYp6GG2uy9J8iSEcPI3GJdw7xi/KG4Fvrw8KiwGh8= Received: by 10.70.132.9 with SMTP id f9mr1275742wxd; Thu, 10 Nov 2005 12:49:15 -0800 (PST) Received: by 10.70.45.14 with HTTP; Thu, 10 Nov 2005 12:49:15 -0800 (PST) Message-ID: <31a749ec0511101249s6062da57ibb9e3562328e264@mail.gmail.com> Date: Thu, 10 Nov 2005 15:49:15 -0500 From: Alex Kelly To: Garrett Cooper In-Reply-To: <5541566F-7999-4AB2-9761-CF85878CF4A8@u.washington.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <5541566F-7999-4AB2-9761-CF85878CF4A8@u.washington.edu> Cc: FreeBSD Questions Subject: Re: xorg.conf 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 Nov 2005 20:49:17 -0000 On 11/10/05, Garrett Cooper wrote: > On Nov 10, 2005, at 12:06 PM, Alex Kelly wrote: > > > > On 11/10/05, Alex Zbyslaw wrote: > > > >> Alex Kelly wrote: > >> > >> > >>> if you're just interested in seeing if it's there, try this: > >>> > >>> find / -name "xorg.conf" > >>> > >>> > >>> > >> Try: > >> > >> locate xorg.conf > >> > >> first. Much quicker. If that doesn't find anything then try > >> find, but > >> with huge disks searching everywhere would take, well, a while. > >> > >> --Alex > >> > > > > this is true and a good tip. it is quicker. however, xorg.conf could > > have been created before his locate database was recomputed to include > > it. figured i'd cover all his bases. > > > > Even quicker method (as compared to refreshing a locate database) > for searching for a .conf file... > > find /usr/local/etc /etc -name "BLAH.conf" > > One should know that almost all conf files are located in /usr/loc= al/ > etc or /etc in FreeBSD. > -Garrett one should also know that after executing "Xorg -configure", the generated conf file is in /root and not in either /usr/local/etc or /etc - it is manually copied to /etc/X11 later. so find /usr/local/etc /etc -name "BLAH.conf" is quicker, but will miss the= file