From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:32768) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jJQBs-0005Tc-PS for guix-patches@gnu.org; Tue, 31 Mar 2020 19:21:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jJQBq-0004dX-Jh for guix-patches@gnu.org; Tue, 31 Mar 2020 19:21:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:53908) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jJQBq-0004dA-GC for guix-patches@gnu.org; Tue, 31 Mar 2020 19:21:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jJQBq-0004f9-C1 for guix-patches@gnu.org; Tue, 31 Mar 2020 19:21:02 -0400 Subject: [bug#40236] [PATCH] doc: Suggest Btrfs with compression instead of ext4 for root partition. Resent-Message-ID: From: Maxim Cournoyer References: <20200326083524.20275-1-mail@ambrevar.xyz> <87h7y5z3x0.fsf@gmail.com> <87lfnga83c.fsf@ambrevar.xyz> Date: Tue, 31 Mar 2020 19:20:18 -0400 In-Reply-To: <87lfnga83c.fsf@ambrevar.xyz> (Pierre Neidhardt's message of "Tue, 31 Mar 2020 16:53:59 +0200") Message-ID: <87tv24w1ql.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Pierre Neidhardt Cc: 40236@debbugs.gnu.org Hello Pierre! Pierre Neidhardt writes: > Maxim Cournoyer writes: > >>> (list (file-system >>> (device (file-system-label "my-root")) >>> (mount-point "/") >>> - (type "ext4") >>> + (type "btrfs") >>> + (options "subvol=rootfs,compress=zstd") > > By the way in your patch you did not document the syntax (options > "subvol=..."). Are you sure you are looking at the right patch series (https://issues.guix.info/issue/37305#16)? I documented usage examples for a root file system using Btrfs subvolumes. > Is it supported nonetheless in your patch? Yes. > Is it supported in current Guix? Not currently; the patch set is in review :-). I have it running on 3 machines and there's a system test which shows it working as well, so don't be afraid to try it! Maxim