From owner-freebsd-questions@FreeBSD.ORG Sat Feb 14 18:57:06 2015 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4FA565E7 for ; Sat, 14 Feb 2015 18:57:06 +0000 (UTC) Received: from mail-ie0-f179.google.com (mail-ie0-f179.google.com [209.85.223.179]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1A79F847 for ; Sat, 14 Feb 2015 18:57:06 +0000 (UTC) Received: by iecrl12 with SMTP id rl12so24038642iec.4 for ; Sat, 14 Feb 2015 10:56:59 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; bh=4Ltgn2e/fOqBCjVcBsW0cTWYGuo3e63hJqFnhS7+NM8=; b=qUfKUgAQXyofQdbzvCALAVlEsz7a6bSzM3sSXkVkSAuhmI+V892T6moJVnHEhUFy3d uKmm3qWuDVsrJW2SN9kHv/WFvdIA0OgRxpoCzSr7DhYF+znCawgzjBL9w4f3ve4WCmbY J8W99032/LzYpRHr7vI5wRMgcLAv6mDbzdRuhFD68DL3t5FI2zadYQTl8kfDnoVsBrse tSzLAhiCBih7el53i9jOoIGrH/wKoLA08sQaua1spALzcDL4lX90Qr62upFnrFRHdBLw y4zJeqnBsfeuLU8YTM7B8aLAzYMLKhU/hL/4kw5cOgne8MsaCNVFGo2/q+pKZYw4KJmU qWyA== X-Received: by 10.107.25.135 with SMTP id 129mr21034126ioz.44.1423940219183; Sat, 14 Feb 2015 10:56:59 -0800 (PST) Received: from localhost.localdomain ([73.3.70.211]) by mx.google.com with ESMTPSA id io9sm5430685igb.0.2015.02.14.10.56.58 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 14 Feb 2015 10:56:58 -0800 (PST) Message-ID: <54DF9A79.6070601@gmail.com> Date: Sat, 14 Feb 2015 11:56:57 -0700 From: jd1008 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.4.0 MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Re: Ports/Packages and release engineering References: <54DF89BE.6010005@complete.org> In-Reply-To: Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Feb 2015 18:57:06 -0000 On 02/14/2015 11:36 AM, jungle Boogie wrote: >> >Another small question: I ran something like "pkg install xserver-xorg >> >digikam vim screen bash" the other day in my FreeBSD test VM. I >> >discovered quite a bit of information was printed out at the end from >> >various packages, which scrolled off the screen. Is there a way to >> >re-display all that information? It seems if it's important enough to >> >display, it's important enough to display long enough to read;-) One way to save all that stuff that scrolls off the screen is to run the pkg command as follows: script /tmp/pkg.out pkg install xserver-xorg digikam vim screen bash 2>&1 exit now you can view /tmp/pkg.out for all the stuff that scrolled off the screen.