summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMarco van Hulten <marco@hulten.org>2017-11-17 21:54:42 +0100
committerLudovic Courtès <ludo@gnu.org>2017-11-17 23:04:52 +0100
commit45eee2dd62b55f812e477703ff2a0af72e7802e8 (patch)
tree399e2a353b97960189cc2d7f97fd084c12575dad /doc
parenta8714bf6801cf5058fd02bcb1d352a99d12bc870 (diff)
downloadguix-patches-45eee2dd62b55f812e477703ff2a0af72e7802e8.tar
guix-patches-45eee2dd62b55f812e477703ff2a0af72e7802e8.tar.gz
doc: Write "file system" instead of "partition" as appopriate.
* doc/guix.texi (Preparing for Installation): Write "file system" instead of "partition" as appopriate.
Diffstat (limited to 'doc')
-rw-r--r--doc/guix.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/guix.texi b/doc/guix.texi
index 098ff5e543..d4a2a696a4 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -8072,7 +8072,7 @@ types.}. For the ESP, if you have one and assuming it is
mkfs.fat -F32 /dev/sda2
@end example
-Preferably, assign partitions a label so that you can easily and
+Preferably, assign file systems a label so that you can easily and
reliably refer to them in @code{file-system} declarations (@pxref{File
Systems}). This is typically done using the @code{-L} option of
@command{mkfs.ext4} and related commands. So, assuming the target root
@@ -8097,9 +8097,9 @@ cryptsetup open --type luks /dev/sda1 my-partition
mkfs.ext4 -L my-root /dev/mapper/my-partition
@end example
-Once that is done, mount the target root partition under @file{/mnt}
+Once that is done, mount the target file system under @file{/mnt}
with a command like (again, assuming @code{my-root} is the label of the
-root partition):
+root file system):
@example
mount LABEL=my-root /mnt