From owner-freebsd-questions@FreeBSD.ORG Wed Jan 2 02:01:36 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BC67D866 for ; Wed, 2 Jan 2013 02:01:36 +0000 (UTC) (envelope-from fbsd8@a1poweruser.com) Received: from mail-03.name-services.com (mail-03.name-services.com [69.64.155.195]) by mx1.freebsd.org (Postfix) with ESMTP id 9E23B8FC0C for ; Wed, 2 Jan 2013 02:01:36 +0000 (UTC) Received: from [10.0.10.3] ([173.88.197.103]) by mail-03.name-services.com with Microsoft SMTPSVC(6.0.3790.4675); Tue, 1 Jan 2013 18:01:37 -0800 Message-ID: <50E394FD.7070002@a1poweruser.com> Date: Tue, 01 Jan 2013 21:01:33 -0500 From: Fbsd8 User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: Robert Bonomi Subject: Re: Changing value of uname -r References: <201301012113.r01LDSbF022951@mail.r-bonomi.com> In-Reply-To: <201301012113.r01LDSbF022951@mail.r-bonomi.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 02 Jan 2013 02:01:37.0474 (UTC) FILETIME=[1937EA20:01CDE88D] X-Sender: fbsd8@a1poweruser.com X-Authenticated-Sender: fbsd8@a1poweruser.com X-EchoSenderHash: [fbsd8]-[a1poweruser*com] Cc: freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jan 2013 02:01:36 -0000 Robert Bonomi wrote: >> From owner-freebsd-questions@freebsd.org Tue Jan 1 11:52:49 2013 >> Date: Tue, 01 Jan 2013 12:49:17 -0500 >> From: Fbsd8 >> To: FreeBSD Questions >> Subject: Changing value of uname -r >> >> uname -r returns 10.0-CURRENT >> >> setenv UNAME_r "9.0-RELEASE" >> >> uname -r now returns 9.0-RELEASE >> >> How to reset uname -r to original value without doing >> setenv UNAME_r "10.0-CURRENT"? >> >> Is there some way just to deactivate the effect of the >> setenv UNAME_r so it returns to the real value of the system? > > Did you try: > unsetenv UNAME_r > > If yes, what were the results? > > If no, _why_not_? > > yes unsetenv UNAME_r worked.