Use zsh when chrooting

This commit is contained in:
ItsDrike 2021-07-14 14:30:35 +02:00
parent dde5730647
commit dce8e40e65
No known key found for this signature in database
GPG key ID: B5F6B41F708C3ADD
2 changed files with 5 additions and 5 deletions

View file

@ -6,7 +6,7 @@ if [ "$EUID" -ne 0 ]; then
fi
# Make sure the partition is mounted according to fstab
mount /mnt/arch
mount /mnt/arch 2> /dev/null
# Mount necessary directories for chroot to be possible
mount --types proc /proc /mnt/arch/proc
@ -15,8 +15,8 @@ mount --make-rslave /mnt/arch/sys
mount --rbind /dev /mnt/arch/dev
mount --make-rslave /mnt/arch/dev
# Chroot with bash shell
chroot /mnt/arch /bin/bash
# Chroot with zsh shell
chroot /mnt/arch /bin/zsh --login
# Unmount recursively mounted directories
umount -l /mnt/arch/dev{/shm,/pts,}

View file

@ -10,8 +10,8 @@ mount --make-rslave /mnt/gentoo/sys
mount --rbind /dev /mnt/gentoo/dev
mount --make-rslave /mnt/gentoo/dev
# Chroot with bash shell
chroot /mnt/gentoo /bin/bash
# Chroot with zsh shell
chroot /mnt/gentoo /bin/zsh --login
# Unmount recursively mounted directories
umount -l /mnt/gentoo/dev{/shm,/pts,}