me
/
guix
Archived
1
0
Fork 0

doc: Use 'mount --rbind' for chroot instructions.

This was reported by a user in #guix.  It's at least necessary for /sys, to
have the /sys/firmware/efivars location available insinde the chroot when
using an UEFI system.

* doc/guix.texi (Chrooting into an existing system): Replace --bind argument
with --rbind

Suggested-by: Josselin Poiret <dev@jpoiret.xyz>
master
Maxim Cournoyer 2023-03-17 10:57:08 -04:00
parent 2dc2722dc0
commit fd4f91dea6
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 3 additions and 3 deletions

View File

@ -2945,9 +2945,9 @@ mount /dev/sda2 /mnt
Mount special block devices and Linux-specific directories:
@example sh
mount --bind /proc /mnt/proc
mount --bind /sys /mnt/sys
mount --bind /dev /mnt/dev
mount --rbind /proc /mnt/proc
mount --rbind /sys /mnt/sys
mount --rbind /dev /mnt/dev
@end example
If your system is EFI-based, you must also mount the ESP partition.