artix

desc
git clone https://git.awy.one/artix.git
Log | Files | Refs | README | LICENSE

commit c0aa7665f5a80e799954e3e20ae173c7ef70546d
parent 887d5bc8bfc6215987a572d906126ea03e7fef63
Author: awy <awy@awy.one>
Date:   Sat, 22 Feb 2025 18:30:57 +0300

tidy

Diffstat:
Minstall.sh | 4++++
Mpost_chroot.sh | 3++-
2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/install.sh b/install.sh @@ -124,11 +124,13 @@ esac UUID_ROOT=$(blkid -s UUID -o value /dev/"$root_drive") UUID_BOOT=$(blkid -s UUID -o value /dev/"$boot_drive") + if [ "$choosenKernel" = 3 ]; then echo "UUID=$UUID_BOOT /boot vfat defaults,noatime 0 2" > /mnt/etc/fstab else echo "UUID=$UUID_BOOT /boot/efi vfat defaults,noatime 0 2" > /mnt/etc/fstab fi + echo "UUID=$UUID_ROOT / ext4 defaults,noatime 0 1" >> /mnt/etc/fstab export disk_drive @@ -148,5 +150,7 @@ if [ "$choosenKernel" != 3 ]; then mv /mnt/boot/efi/EFI/grub /mnt/boot/efi/EFI/BOOT mv /mnt/boot/efi/EFI/BOOT/grubx64.efi /mnt/boot/efi/EFI/BOOT/BOOTX64.EFI fi + umount -R /mnt + echo "Linux is successfully installed!" diff --git a/post_chroot.sh b/post_chroot.sh @@ -4,7 +4,7 @@ set -e ln -sf /usr/share/zoneinfo/Europe/Moscow /etc/localtime hwclock --systohc -# different nvidia fixes +# nvidia fixes mkdir -p /etc/modprobe.d/ cat <<EOL >> /etc/modprobe.d/nvidia.conf options nvidia NVreg_UsePageAttributeTable=1 @@ -19,6 +19,7 @@ export LANG="en_US.UTF-8" export LC_COLLATE="C" echo "$hostname" > /etc/hostname + PARTUUID_ROOT=$(blkid -s PARTUUID -o value /dev/"$root_drive") binKernel(){