From owner-freebsd-questions@FreeBSD.ORG Thu Jun 16 12:58:52 2011 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 00CA6106564A for ; Thu, 16 Jun 2011 12:58:52 +0000 (UTC) (envelope-from jamesbrandongooch@gmail.com) Received: from mail-ww0-f50.google.com (mail-ww0-f50.google.com [74.125.82.50]) by mx1.freebsd.org (Postfix) with ESMTP id 890408FC12 for ; Thu, 16 Jun 2011 12:58:51 +0000 (UTC) Received: by wwc33 with SMTP id 33so1468438wwc.31 for ; Thu, 16 Jun 2011 05:58:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=N/pv6ROf6jXogLRhM7986o453aZA2v6Ve913cmFnhp8=; b=rwFiEbm2t7ifHE9eZiK3w++6Xwc9zpZy0OCHDFYewbNmAjM5wXuorNI1/FNeO55Ht/ FeMOAKqxfRjYIihXX0waTlY8xftYa5cdvlIKX6y2iprjlvjZZeGXpxEXwCduCiV1Ttoc jad54aqVM3jKaBNWZHTOPIRug9L9f87XUjRxI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=Z6jSkKr15+jQtT6QnT8va6ABVTrbvLaxpDu/pNsmOr8MdbMDtKjIlDKZaWWqd6zDI0 lfR1YGcXMPLL3u3ekrzPaSiaRJtfYsmaXsOCm0BftSFtnpThYi0yFOMo3SddS18MvCu4 VbtX9XiQWSvDTx4/verKbFblEnZtjKDEc+X0E= MIME-Version: 1.0 Received: by 10.216.238.13 with SMTP id z13mr887885weq.99.1308227573751; Thu, 16 Jun 2011 05:32:53 -0700 (PDT) Received: by 10.216.39.10 with HTTP; Thu, 16 Jun 2011 05:32:53 -0700 (PDT) In-Reply-To: <19961.62509.544104.427085@jerusalem.litteratus.org> References: <19961.62509.544104.427085@jerusalem.litteratus.org> Date: Thu, 16 Jun 2011 07:32:53 -0500 Message-ID: From: Brandon Gooch To: Robert Huff Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: questions@freebsd.org Subject: Re: finding kernel 'r' number 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, 16 Jun 2011 12:58:52 -0000 On Thu, Jun 16, 2011 at 7:16 AM, Robert Huff wrote: > > =A0 =A0 =A0 =A0For some time now, people have been referring to what buil= d > they're using by the 'r' number, which I believe to be part of svn. > =A0 =A0 =A0 =A0How would one go about determining this value for the inst= alled > kernel? > > > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0Robert Huff That would be uname(1): $ uname -v FreeBSD 9.0-CURRENT #0 r223017: Sun Jun 12 13:55:34 CDT 2011 root@m6500.local:/usr/obj/usr/src/sys/GENERIC ....where r223017 is the current svn revision number from which my system is compiled (kernel and userland). For more options, see `man uname`. -Brandon