From 62c0c0246e766ccaf6f9c1abb140cbe657519d0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Lesimple?= Date: Sat, 2 Mar 2019 18:07:24 +0100 Subject: [PATCH] update README --- README.md | 6 +++--- btrfs-list | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index be565b1..1c099e3 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ Btrfs is a great filesystem, but its userland tools are not very user-frienfly yet. -As a long-time user, I've developed `btrfs-list` as a wrapper to make sense out of the `btrfs subvolume list` command. +As a long-time user, I've developed `btrfs-list` as a wrapper to make sense out of the `btrfs sub list` and `btrfs qgroup show` commands. You need `btrfs-list` if either: - You'd like to have a nice overview of your subvolumes/snapshots @@ -13,5 +13,5 @@ into this: ![btrfs_list](https://user-images.githubusercontent.com/218502/53362048-965b5d80-3939-11e9-8e2f-8f92c7db79e4.PNG) Prerequisites: -- `btrfs-progs` v3.10 at least (Jan 2013) -- The _quota_ feature enabled on your Btrfs filesystems (optional, to get space usage per subvolume and snapshot) +- `btrfs-progs` v3.18 at least (Dec 2014) +- The _quota_ feature enabled on your Btrfs filesystems (optional, to get space usage for subvolumes and snapshots) diff --git a/btrfs-list b/btrfs-list index d009bc4..dacbfa1 100755 --- a/btrfs-list +++ b/btrfs-list @@ -176,7 +176,7 @@ my ($version) = $cmd->{'stdout'}->[0] =~ /v([0-9.]+)/; if (version->declare($version)->numify lt version->declare("3.18")->numify) { - print STDERR "WARNING: you're using an old version of btrfs-progs, v$version, we need at least version 3.18 (December 2014).\n"; + print STDERR "WARNING: you're using an old version of btrfs-progs, v$version, we need at least version 3.18 (Dec 2014).\n"; exit 1; }