mirror of
https://github.com/tommytran732/Arch-Setup-Script
synced 2024-11-21 17:11:34 -05:00
Fix regression caused by last commit (#23)
Configure locales after mount of filesystem Signed-off-by: Welteam <8932313+Welteam@users.noreply.github.com>
This commit is contained in:
parent
71a5f7eb18
commit
26cdbbd06f
15
install.sh
15
install.sh
@ -59,14 +59,11 @@ if [[ -n $username ]]; then
|
|||||||
read -r -p "Please enter a password for the user account: " password
|
read -r -p "Please enter a password for the user account: " password
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Setting up locales.
|
# Choose locales.
|
||||||
read -r -p "Please insert the locale you use in this format (xx_XX): " locale
|
read -r -p "Please insert the locale you use in this format (xx_XX): " locale
|
||||||
echo "$locale.UTF-8 UTF-8" > /mnt/etc/locale.gen
|
|
||||||
echo "LANG=$locale.UTF-8" > /mnt/etc/locale.conf
|
|
||||||
|
|
||||||
# Setting up keyboard layout.
|
# Choose keyboard layout.
|
||||||
read -r -p "Please insert the keyboard layout you use: " kblayout
|
read -r -p "Please insert the keyboard layout you use: " kblayout
|
||||||
echo "KEYMAP=$kblayout" > /mnt/etc/vconsole.conf
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -238,6 +235,14 @@ cat > /mnt/etc/hosts <<EOF
|
|||||||
127.0.1.1 $hostname.localdomain $hostname
|
127.0.1.1 $hostname.localdomain $hostname
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
# Setting up locales.
|
||||||
|
echo "$locale.UTF-8 UTF-8" > /mnt/etc/locale.gen
|
||||||
|
echo "LANG=$locale.UTF-8" > /mnt/etc/locale.conf
|
||||||
|
|
||||||
|
# Setting up keyboard layout.
|
||||||
|
read -r -p "Please insert the keyboard layout you use: " kblayout
|
||||||
|
echo "KEYMAP=$kblayout" > /mnt/etc/vconsole.conf
|
||||||
|
|
||||||
# Configuring /etc/mkinitcpio.conf
|
# Configuring /etc/mkinitcpio.conf
|
||||||
echo "Configuring /etc/mkinitcpio for ZSTD compression and LUKS hook."
|
echo "Configuring /etc/mkinitcpio for ZSTD compression and LUKS hook."
|
||||||
sed -i 's,#COMPRESSION="zstd",COMPRESSION="zstd",g' /mnt/etc/mkinitcpio.conf
|
sed -i 's,#COMPRESSION="zstd",COMPRESSION="zstd",g' /mnt/etc/mkinitcpio.conf
|
||||||
|
Loading…
Reference in New Issue
Block a user