diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2017-08-03 22:26:36 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2017-08-04 01:51:22 +0200 |
commit | 4de4a1cfccb981757765202a0fd2db4bf7479822 (patch) | |
tree | 1bfa281bc024c48770507d1dab02fbed3e271b88 | |
parent | 7a068459ba9f1dd6f3dee12e39124a0c8b603ced (diff) | |
download | guix-4de4a1cfccb981757765202a0fd2db4bf7479822.tar.gz guix-4de4a1cfccb981757765202a0fd2db4bf7479822.zip |
gnu: zerofree: Expand description.
* gnu/packages/linux.scm (zerofree)[description]: Expand.
-rw-r--r-- | gnu/packages/linux.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 481037066b..843ee6dc45 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -848,9 +848,10 @@ ext3 or ext4 partition.") (inputs `(("libext2fs" ,e2fsprogs))) (synopsis "Zero non-allocated regions in ext2/ext3/ext4 file systems") (description - "The zerofree command scans the free blocks in an ext2 file system and -fills any non-zero blocks with zeroes. This is a useful way to make disk -images more compressible.") + "Zerofree finds the unallocated blocks with non-zero value content in an +ext2, ext3, or ext4 file system and fills them with zeroes (or another value). +This is a simple way to make disk images more compressible. +Zerofree requires the file system to be unmounted or mounted read-only.") (license license:gpl2))) (define-public strace |