From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matt Huszagh Subject: Re: guix system init with mounted btrfs Date: Sun, 23 Jun 2019 14:10:48 -0700 Message-ID: <87v9wwhusn.fsf@gmail.com> References: <87r27lginz.fsf@gmail.com> <87v9wwscbm.fsf@nckx> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:58230) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hf9lJ-0000QY-U3 for help-guix@gnu.org; Sun, 23 Jun 2019 17:10:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hf9lF-0004ot-UG for help-guix@gnu.org; Sun, 23 Jun 2019 17:10:57 -0400 Received: from mail-pl1-x62f.google.com ([2607:f8b0:4864:20::62f]:38382) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hf9lD-0004np-Tv for help-guix@gnu.org; Sun, 23 Jun 2019 17:10:52 -0400 Received: by mail-pl1-x62f.google.com with SMTP id g4so5676837plb.5 for ; Sun, 23 Jun 2019 14:10:51 -0700 (PDT) In-Reply-To: <87v9wwscbm.fsf@nckx> (Tobias Geerinckx-Rice's message of "Sun, 23 Jun 2019 14:42:05 +0200") 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: Tobias Geerinckx-Rice Cc: help-guix@gnu.org Tobias Geerinckx-Rice writes: Matt Huszagh writes: > Ok, so I've simplified the subvolume layout somewhat: > mount -t btrfs -o compress=lzo LABEL=btrfs /mnt > btrfs subvolume create /mnt/@guixsd > btrfs subvolume create /mnt/@home > btrfs subvolume create /mnt/@snapshots > umount /mnt > o_btrfs=defaults,X-mount.mkdir,compress=lzo,ssd,noatime > > mount -o subvol=@guixsd,$o_btrfs LABEL=btrfs /mnt > mount -o subvol=@home,$o_btrfs LABEL=btrfs /mnt/home > mount -o subvol=@snapshots,$o_btrfs LABEL=btrfs /mnt/.snapshots > mount -o X-mount.mkdir /dev/nvme0n1p1 /mnt/boot/efi I think I was a bit hasty in saying this worked. Another possible reason is guix system init doesn't try to do anything with these directories anyway so maybe the fact that these subvolumes are "supported" is a false positive. I've tried an even simpler layout: no subvolumes, just mount -t btrfs -o defaults,compress=lzo,ssd,noatime LABEL=btrfs /mnt mount -o X-mount.mkdir /dev/nvme0n1p1 /mnt/boot/efi However, I'm experiencing the same decryption error with this setup.