From mboxrd@z Thu Jan 1 00:00:00 1970 From: Joshua Branson Subject: Re: Could not find bootstrap binary 'guile-2.0.9.tar.xz' Date: Wed, 18 Apr 2018 20:03:19 -0400 Message-ID: References: <87604s12j9.fsf@shack@muto.ca> <87vacogug2.fsf@netris.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51291) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f8x1W-0005s4-NC for help-guix@gnu.org; Wed, 18 Apr 2018 20:02:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f8x1S-0005eo-OU for help-guix@gnu.org; Wed, 18 Apr 2018 20:02:02 -0400 Received: from out3-smtp.messagingengine.com ([66.111.4.27]:40499) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1f8x1S-0005dl-KN for help-guix@gnu.org; Wed, 18 Apr 2018 20:01:58 -0400 Received: from compute6.internal (compute6.nyi.internal [10.202.2.46]) by mailout.nyi.internal (Postfix) with ESMTP id 5298721D33 for ; Wed, 18 Apr 2018 20:01:56 -0400 (EDT) Received: from dobby (unknown [72.12.220.132]) by mail.messagingengine.com (Postfix) with ESMTPA id 1321C10255 for ; Wed, 18 Apr 2018 20:01:56 -0400 (EDT) In-Reply-To: <87vacogug2.fsf@netris.org> (Mark H. Weaver's message of "Wed, 18 Apr 2018 15:56:13 -0400") List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: help-guix@gnu.org I guess I'm still a little confused. Suppose that I want to update all packages, on my system. The ones owned by root, and the ones owned by all other users. Then I'd do this? $ guix pull && guix package -u $ logout $ login DifferentUser $ guix pull && guix package -u ...repeat for all other users... $ su # guix pull && guix package -u && guix system reconfigure /etc/config.scm Does that look right? Mark H Weaver writes: > Hi Joshua, > > Joshua Branson writes: >> Maybe I'm being really silly, but don't you just do a guix pull as a >> root user not as a normal user? > > No. Guix is not like most distros where you have to be root to update > the package list, and where root's package list is used by all other > users. > > In the Guix model, each user has their own version of Guix and its > package list. When a user runs "guix pull", it only updates Guix for > that particular user, by changing the symlink ~/.config/guix/latest. > > If root runs "guix pull", it only updates the package list for root, by > changing the symlink ~root/.config/guix/latest. > > Regards, > Mark