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
parent
2dc2722dc0
commit
fd4f91dea6
|
@ -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.
|
||||
|
|
Reference in New Issue