mirror of
https://github.com/classy-giraffe/easy-arch.git
synced 2025-11-17 19:40:55 +00:00
Fixed bugs.
This commit is contained in:
parent
c25f569a4a
commit
17af10cb64
1 changed files with 8 additions and 3 deletions
11
easy-arch.sh
11
easy-arch.sh
|
|
@ -102,7 +102,7 @@ EOF
|
||||||
# Setting up locales.
|
# Setting up locales.
|
||||||
echo "Please insert the locale you use in this format (xx_XX.UTF-8): "
|
echo "Please insert the locale you use in this format (xx_XX.UTF-8): "
|
||||||
read locale
|
read locale
|
||||||
echo $locale > /mnt/etc/locale.gen
|
echo "$locale UTF-8" > /mnt/etc/locale.gen
|
||||||
echo "LANG=\"$locale\"" > /mnt/etc/locale.conf
|
echo "LANG=\"$locale\"" > /mnt/etc/locale.conf
|
||||||
|
|
||||||
# Setting up keyboard layout.
|
# Setting up keyboard layout.
|
||||||
|
|
@ -143,7 +143,7 @@ arch-chroot /mnt /bin/bash -xe <<"EOF"
|
||||||
locale-gen
|
locale-gen
|
||||||
|
|
||||||
# Generating a new initramfs.
|
# Generating a new initramfs.
|
||||||
mkinitcpio -p
|
mkinitcpio -P
|
||||||
|
|
||||||
# Installing Grub.
|
# Installing Grub.
|
||||||
grub-install --target=x86_64-efi --efi-directory=/boot --bootloader-id=GRUB
|
grub-install --target=x86_64-efi --efi-directory=/boot --bootloader-id=GRUB
|
||||||
|
|
@ -163,4 +163,9 @@ systemctl enable fstrim.timer --root=/mnt
|
||||||
|
|
||||||
# Enabling NetworkManager.
|
# Enabling NetworkManager.
|
||||||
echo "Enabling NetworkManager."
|
echo "Enabling NetworkManager."
|
||||||
systemctl enable NetworkManager --root=/mnt
|
systemctl enable NetworkManager --root=/mnt
|
||||||
|
|
||||||
|
# Unmounting partitions.
|
||||||
|
umount -R /mnt
|
||||||
|
echo "Done."
|
||||||
|
exit
|
||||||
Loading…
Add table
Add a link
Reference in a new issue