From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: Help with a basic GuixSD installation Date: Tue, 30 Jun 2015 15:08:04 +0200 Message-ID: <87mvzh2vkb.fsf@gnu.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36328) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z9vGp-00086f-Oj for Guix-devel@gnu.org; Tue, 30 Jun 2015 09:08:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Z9vGk-0003TK-Ve for Guix-devel@gnu.org; Tue, 30 Jun 2015 09:08:15 -0400 In-Reply-To: (Evan Rowley's message of "Mon, 29 Jun 2015 14:18:01 -0400") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Evan Rowley Cc: Guix-devel@gnu.org Evan Rowley skribis: > (file-systems (cons (file-system > (device > "/dev/disk/by-id/ata-WDC_WD20EURS-63SPKY0_WD-WMC300539593-part3") > (title "root") > (mount-point "/") > (type "ext4")) > %base-file-systems)) You should be using something like: (file-system (title 'label) (device "ata-WDC_WD20EURS-63SPKY0_WD-WMC300539593-part3") (mount-point "/") (type "ext4")) It literally means: Mount the block device whose label (in the ext[234] sense) is =E2=80=9Cata-WDC_WD20EURS-63SPKY0_WD-WMC300539593-part3=E2=80=9D. The root file system is mounted from the initrd, when udev is not running; thus /dev/disk/by-id is not available yet, and it=E2=80=99s import= ant to use this 'label mechanism instead. Thanks, Ludo=E2=80=99.