Inside Chroot
Once you're in the chroot environment, you configure your system: passwords, locale, timezone, and more.
example-config.sh
# Inside praxis-chroot
# Set root password
passwd root
# Set timezone
ln -sf /usr/share/zoneinfo/America/New_York /etc/localtime
# Set locale
echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen
locale-gen
export LANG=en_US.UTF-8
# Set hostname (optional)
echo "praxis" > /etc/hostname
# Ready to exit and set up bootloader