From owner-freebsd-questions@FreeBSD.ORG Mon Sep 5 14:50:20 2011 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 EC550106566B for ; Mon, 5 Sep 2011 14:50:20 +0000 (UTC) (envelope-from pldrouin@pldrouin.net) Received: from ran.physics.carleton.ca (ran.physics.carleton.ca [134.117.14.34]) by mx1.freebsd.org (Postfix) with ESMTP id C03728FC08 for ; Mon, 5 Sep 2011 14:50:20 +0000 (UTC) Received: from [192.168.1.107] (CPE0023695b905f-CM001a666aca96.cpe.net.cable.rogers.com [99.245.231.142]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by ran.physics.carleton.ca (Postfix) with ESMTP id F2F0F39F88; Mon, 5 Sep 2011 10:50:19 -0400 (EDT) Message-ID: <4E64E1AB.9050607@pldrouin.net> Date: Mon, 05 Sep 2011 10:50:19 -0400 From: Pierre-Luc Drouin User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.18) Gecko/20110617 Thunderbird/3.1.11 MIME-Version: 1.0 To: Polytropon , freebsd-questions@freebsd.org References: <4E644637.1030500@pldrouin.net> <20110905143102.68a797fa.freebsd@edvax.de> <4E64CC1D.90001@pldrouin.net> <20110905154358.187c9fba.freebsd@edvax.de> <4E64DAA6.60006@pldrouin.net> <20110905163623.98ebca0a.freebsd@edvax.de> In-Reply-To: <20110905163623.98ebca0a.freebsd@edvax.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: Re: Best Server OS for Someone That Does not Want to Touch a Shell on a Regular Basis? 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: Mon, 05 Sep 2011 14:50:21 -0000 >> I noticed that in >> the past few years, updating softwares through ports has been requiring >> more user intervention, due to the way some dependencies are being >> updated from one version to the next. Would using binary packages allow >> to avoid more such user intervention? > Yes. All dependencies would be incorporated automatically. > Only ports without equivalent package that additionally have > OPTIONS to set would invoke a configuration screen, and this > screen would have to be dealt with only in the first run of > the updating process. > > There are also options for portmaster that can be used to > control program behaviour in case of problems (e. g. some > package not found, conflicting ports, versioning problem, > or port marked "broken"). > So, what I was referring to in particulars was special updates like this: 20110517: AFFECTS: users of lang/perl* AUTHOR: skv@FreeBSD.org lang/perl5.14 is out. If you want to switch to it from, for example lang/perl5.12, that is: Portupgrade users: 0) Fix pkgdb.db (for safety): pkgdb -Ff 1) Reinstall new version of Perl (5.14): env DISABLE_CONFLICTS=1 portupgrade -o lang/perl5.14 -f perl-5.12.\* 2) Reinstall everything that depends on Perl: portupgrade -fr perl So you are saying that this type of special interventions is not necessary when using only binary packages, right? Thanks!