Das ist ganz einfach. Das Arch-Chroot- Skript führt Folgendes aus :
chroot_setup() { CHROOT_ACTIVE_MOUNTS=() [[ $(trap -p EXIT) ]] && die '(BUG): attempting to overwrite existing EXIT trap' trap 'chroot_teardown' EXIT chroot_maybe_add_mount "! mountpoint -q '$1'" "$1" "$1" --bind && chroot_add_mount proc "$1/proc" -t proc -o nosuid,noexec,nodev && chroot_add_mount sys "$1/sys" -t sysfs -o nosuid,noexec,nodev,ro && ignore_error chroot_maybe_add_mount "[[ -d '$1/sys/firmware/efi/efivars' ]]" \ efivarfs "$1/sys/firmware/efi/efivars" -t efivarfs -o nosuid,noexec,nodev && chroot_add_mount udev "$1/dev" -t devtmpfs -o mode=0755,nosuid && chroot_add_mount devpts "$1/dev/pts" -t devpts -o mode=0620,gid=5,nosuid,noexec && chroot_add_mount shm "$1/dev/shm" -t tmpfs -o mode=1777,nosuid,nodev && chroot_add_mount run "$1/run" -t tmpfs -o nosuid,nodev,mode=0755 && chroot_add_mount tmp "$1/tmp" -t tmpfs -o mode=1777,strictatime,nodev,nosuid }
... und kopiert dann resolv.conf
.
Sie müssen also:
mount proc "$chroot_directory/proc" -t proc -o nosuid,noexec,nodev mount sys "$chroot_directory/sys" -t sysfs -o nosuid,noexec,nodev,ro mount udev "$chroot_directory/dev" -t devtmpfs -o mode=0755,nosuid mount devpts "$chroot_directory/dev/pts" -t devpts -o mode=0620,gid=5,nosuid,noexec mount shm "$chroot_directory/dev/shm" -t tmpfs -o mode=1777,nosuid,nodev mount run "$chroot_directory/run" -t tmpfs -o nosuid,nodev,mode=0755 mount tmp "$chroot_directory/tmp" -t tmpfs -o mode=1777,strictatime,nodev,nosuid
Plus, wenn Sie EFI-booten:
mount efivarfs "$chroot_directory/sys/firmware/efi/efivars" -t efivarfs -o nosuid,noexec,nodev
Kopieren Sie sie /etc/resolv.conf
bei Bedarf auch, oder Sie können DNS-Namen nicht auflösen.
Alternativ können Sie auch das Gentoo-Chroot-Verfahren ausführen :
mount -t proc proc "$chroot_directory/proc" mount --rbind /sys "$chroot_directory/sys" mount --make-rslave "$chroot_directory/sys" mount --rbind /dev "$chroot_directory/dev" mount --make-rslave "$chroot_directory/dev"
Danach einfach ausführen chroot "$chroot_directory"
oder vielleicht, chroot "$chroot_directory" /usr/bin/bash
wenn Ihre aktuelle Shell nicht in dem Verzeichnis verfügbar ist, in dem Sie sich befinden.