Small fixes

This commit is contained in:
Augusto Gunsch 2021-08-09 18:58:15 -03:00
parent 09e90e3702
commit 246dcf0775
No known key found for this signature in database
GPG Key ID: F7EEFE29825C72DC
1 changed files with 7 additions and 3 deletions

View File

@ -180,12 +180,14 @@ configure() {
echo "Choose locale:" echo "Choose locale:"
local LOCALE=$(cat /mnt/etc/locale.gen | sed '/^#\s/D' | sed '/^#$/D' | sed 's/^#//' | fzf --layout=reverse --height=20) local LOCALE=$(cat /mnt/etc/locale.gen | sed '/^#\s/D' | sed '/^#$/D' | sed 's/^#//' | fzf --layout=reverse --height=20)
echo -n "Configuring locale..."
cat /mnt/etc/locale.gen | sed "s/^#$LOCALE/$LOCALE/" > /tmp/locale.gen cat /mnt/etc/locale.gen | sed "s/^#$LOCALE/$LOCALE/" > /tmp/locale.gen
mv /tmp/locale.gen /mnt/etc/locale.gen mv /tmp/locale.gen /mnt/etc/locale.gen
quiet chroot /mnt locale-gen quiet chroot /mnt locale-gen
echo "export LANG=\"en_US.UTF-8\"" > /mnt/etc/locale.conf echo "export LANG=\"en_US.UTF-8\"" > /mnt/etc/locale.conf
echo "export LC_COLLATE=\"C\"" >> /mnt/etc/locale.conf echo "export LC_COLLATE=\"C\"" >> /mnt/etc/locale.conf
echo "done"
echo -n "Configuring boot loader..." echo -n "Configuring boot loader..."
if [ $UEFI -eq 1 ]; then if [ $UEFI -eq 1 ]; then
@ -197,19 +199,20 @@ configure() {
echo "done" echo "done"
echo "Type root password:" echo "Type root password:"
chroot /mnt passwd chroot /mnt passwd -q
echo -n "Type your personal username: " echo -n "Type your personal username: "
local user local user
read user read user
chroot /mnt useradd -m "$user" chroot /mnt useradd -m "$user"
"Type your password:" echo "Type your password:"
chroot /mnt passwd "$user" chroot /mnt passwd -q "$user"
echo -n "Type the machine hostname: " echo -n "Type the machine hostname: "
local hostname local hostname
read hostname read hostname
echo -n "Configuring hostname and network..."
echo "$hostname" > /mnt/etc/hostname echo "$hostname" > /mnt/etc/hostname
echo "127.0.0.1 localhost" > /mnt/etc/hosts echo "127.0.0.1 localhost" > /mnt/etc/hosts
echo "::1 localhost" >> /mnt/etc/hosts echo "::1 localhost" >> /mnt/etc/hosts
@ -223,6 +226,7 @@ configure() {
fi fi
quiet chroot pacman -S dhcpcd wpa_supplicant quiet chroot pacman -S dhcpcd wpa_supplicant
fi fi
echo "done"
umount -R /mnt umount -R /mnt
echo -n "Ready to reboot. Press any key to continue..." echo -n "Ready to reboot. Press any key to continue..."