You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iso/chrooted-bootstrap.sh

17 lines
331 B
Bash

#!/usr/bin/env bash
echo "Chrooted in the new system, running as $(whoami)"
# Mirrorlist
reflector > /etc/pacman.d/mirrorlist
# Hostname
echo "crystal-live" > /etc/hostname
# Locale
echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen
echo "LANG=en_US.UTF-8" > /etc/locale.conf
locale-gen
echo "Configured the system. Exiting chroot."