commit 84dd145fd8a28290cb39333972f4b77b1c015473
parent a6676deb8d55bb48e1805732bbc2ce53f21d06b3
Author: awy <awy@awy.one>
Date: Thu, 20 Mar 2025 13:16:29 +0300
cleanup
Diffstat:
M | install.sh | | | 172 | ++++++++++++++++++++++++++++++++++++------------------------------------------- |
M | post_chroot.sh | | | 74 | ++++++++++++++++++++++++++++++++++++++------------------------------------ |
2 files changed, 116 insertions(+), 130 deletions(-)
diff --git a/install.sh b/install.sh
@@ -5,132 +5,116 @@ dinitctl start ntpd
cpuvendor=$(grep -m 1 'vendor_id' /proc/cpuinfo | awk '{print $3}')
-title()
-{
- clear
- echo "
- ################################################################################
- # #
- # This is Automated Artix Linux Installer #
- # #
- # By #
- # #
- # awy :) #
- # #
- ################################################################################
- "
-}
-
diskpart()
{
- mkfs.fat -F32 /dev/"$bootdrive"
- mkfs.ext4 -F /dev/"$rootdrive"
- mount /dev/"$rootdrive" /mnt
- mkdir /mnt/boot
- mkdir /mnt/home
+ mkfs.fat -F32 /dev/"$bootdrive"
+ mkfs.ext4 -F /dev/"$rootdrive"
+ mount /dev/"$rootdrive" /mnt
+ mkdir /mnt/boot
+ mkdir /mnt/home
}
binkernel()
{
- mkdir /mnt/boot/efi
- mount /dev/"$bootdrive" /mnt/boot/efi
- pacman -Sy --confirm
- case $kerneltype in
- 1) basestrap /mnt base dinit seatd-dinit linux linux-headers ;;
- 2) basestrap /mnt base dinit seatd-dinit linux-zen linux-zen-headers ;;
- *) printf "Invalid kernel" && exit 1 ;;
- esac
+ mkdir /mnt/boot/efi
+ mount /dev/"$bootdrive" /mnt/boot/efi
+ pacman -Sy --confirm
+ case $kerneltype in
+ 1) basestrap /mnt base dinit seatd-dinit linux linux-headers ;;
+ 2) basestrap /mnt base dinit seatd-dinit linux-zen linux-zen-headers ;;
+ *) printf "Invalid kernel" && exit 1 ;;
+ esac
}
customkernel()
{
- mount /dev/"$bootdrive" /mnt/boot
- pacman -Sy --confirm
- basestrap /mnt base dinit seatd-dinit
- cp .config /mnt/usr/src
+ mount /dev/"$bootdrive" /mnt/boot
+ pacman -Sy --confirm
+ basestrap /mnt base dinit seatd-dinit
+ cp .config /mnt/usr/src
}
getpass()
{
- stty -echo
- read -r choice
- stty echo
- echo "$choice"
+ stty -echo
+ read -r choice
+ stty echo
+ echo "$choice"
}
getuserdata()
{
- printf "Enter root password: "
- rootpass=$(getpass)
- echo
- printf "Enter username: "
- read -r username
- printf "Enter password for %s: " "$username"
- userpass=$(getpass)
- echo
- printf "Enter hostname: "
- read -r hostname
- printf "Choose Linux Kernel:\n1. Default kernel\n2. Zen kernel\n3. Custom kernel\nYour choose: "
- read -r kerneltype
- printf "Enter disk label (e.g. sda, nvme0n1p <- p is mandatory in nvme case): "
- read -r diskdrive
- printf "Enter space-separated partition numbers (e.g., 5 6 for 5 boot 6 root): "
- read -r partitions
- rootdrive="$diskdrive${partitions##* }"
- bootdrive="$diskdrive${partitions%% *}"
- while true; do
- title
- printf "Your CPU Vendor detected as %s, is that right? Y/N: " "$cpuvendor"
- read -r answer
- case "$answer" in
- y|Y)
- break ;;
- n|N)
- echo "Something wrong. Exiting..."
- exit 1 ;;
- *)
- echo "Invalid response. Please enter 'y' or 'n'." && sleep 3 ;;
- esac
- done
+ printf "Enter root password: "
+ rootpass=$(getpass)
+ echo
+ printf "Enter username: "
+ read -r username
+ printf "Enter password for %s: " "$username"
+ userpass=$(getpass)
+ echo
+ printf "Enter hostname: "
+ read -r hostname
+ printf "Choose Linux Kernel:\n1. Default kernel\n2. Zen kernel\n3. Custom kernel\nYour choose: "
+ read -r kerneltype
+ printf "Enter disk label (e.g. sda, nvme0n1p <- p is mandatory in nvme case): "
+ read -r diskdrive
+ printf "Enter space-separated partition numbers (e.g., 5 6 for 5 boot 6 root): "
+ read -r partitions
+ rootdrive="$diskdrive${partitions##* }"
+ bootdrive="$diskdrive${partitions%% *}"
+ while true; do
+ title
+ printf "Your CPU Vendor detected as %s, is that right? Y/N: " "$cpuvendor"
+ read -r answer
+ case "$answer" in
+ y|Y)
+ break ;;
+ n|N)
+ echo "Something wrong. Exiting..."
+ exit 1 ;;
+ *)
+ echo "Invalid response. Please enter 'y' or 'n'." && sleep 3 ;;
+ esac
+ done
}
-title
+clear
getuserdata
diskpart
case $kerneltype in
- 1 | 2) binkernel ;;
- 3) customkernel ;;
- *) printf "Invalid kernel type" && exit 1 ;;
+ 1 | 2) binkernel ;;
+ 3) customkernel ;;
+ *) printf "Invalid kernel type" && exit 1 ;;
esac
case $cpuvendor in
- GenuineIntel)
- basestrap /mnt intel-ucode
- if [ "$kerneltype" = 3 ]; then
- pacman -S iucode-tool --noconfirm
- CPUFAM=$(printf '%02x\n' "$(lscpu | grep -E '^CPU family:' | awk '{print $3}')")
- MODEL=$(printf '%02x\n' "$(lscpu | grep -E '^Model:' | awk '{print $2}')")
- STEPPING=$(printf '%02x\n' "$(lscpu | grep -E '^Stepping:' | awk '{print $2}')")
- MICROCODE_PATH="intel-ucode/$CPUFAM-$MODEL-$STEPPING"
- THREAD_NUM=$(nproc)
- sed -i "s#CONFIG_EXTRA_FIRMWARE=.*#CONFIG_EXTRA_FIRMWARE=\"$MICROCODE_PATH\"#g" /mnt/usr/src/.config
- sed -i "s#CONFIG_NR_CPUS=.*#CONFIG_NR_CPUS=$THREAD_NUM#g" /mnt/usr/src/.config
- fi
- ;;
- AuthenticAMD)
- basestrap /mnt amd-ucode ;;
- *)
- printf "Unsupported CPU Vendor. Possibly there is error in detection script.\n" && exit 1 ;;
+ GenuineIntel)
+ basestrap /mnt intel-ucode
+ if [ "$kerneltype" = 3 ]; then
+ pacman -S iucode-tool --noconfirm
+ CPUFAM=$(printf '%02x\n' "$(lscpu | grep -E '^CPU family:' | awk '{print $3}')")
+ MODEL=$(printf '%02x\n' "$(lscpu | grep -E '^Model:' | awk '{print $2}')")
+ STEPPING=$(printf '%02x\n' "$(lscpu | grep -E '^Stepping:' | awk '{print $2}')")
+ MICROCODE_PATH="intel-ucode/$CPUFAM-$MODEL-$STEPPING"
+ THREAD_NUM=$(nproc)
+ sed -i "s#CONFIG_EXTRA_FIRMWARE=.*#CONFIG_EXTRA_FIRMWARE=\"$MICROCODE_PATH\"#g" /mnt/usr/src/.config
+ sed -i "s#CONFIG_NR_CPUS=.*#CONFIG_NR_CPUS=$THREAD_NUM#g" /mnt/usr/src/.config
+ fi
+ ;;
+ AuthenticAMD)
+ basestrap /mnt amd-ucode ;;
+ *)
+ printf "Unsupported CPU Vendor. Possibly there is error in detection script.\n" && exit 1 ;;
esac
UUID_ROOT=$(blkid -s UUID -o value /dev/"$rootdrive")
UUID_BOOT=$(blkid -s UUID -o value /dev/"$bootdrive")
if [ "$kerneltype" = 3 ]; then
- echo "UUID=$UUID_BOOT /boot vfat defaults,noatime 0 2" > /mnt/etc/fstab
+ 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
+ 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
@@ -149,8 +133,8 @@ cp post_chroot.sh /mnt
artix-chroot /mnt ./post_chroot.sh
if [ "$kerneltype" != 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
+ 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
diff --git a/post_chroot.sh b/post_chroot.sh
@@ -24,49 +24,49 @@ PARTUUID_ROOT=$(blkid -s PARTUUID -o value /dev/"$rootdrive")
binkernel()
{
- echo "options hid_apple fnmode=0" > /etc/modprobe.d/hid_apple.conf
- pacman -S grub os-prober efibootmgr --noconfirm
- grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=grub
- sed -i "s#GRUB_CMDLINE_LINUX_DEFAULT=.*#GRUB_CMDLINE_LINUX_DEFAULT=\"loglevel=3 quiet options root=PARTUUID=$PARTUUID_ROOT rw nvidia-drm.modeset=1 modeset=1 fbdev=1 intel_iommu=on\"#g" /etc/default/grub
- sed -i -e 's/MODULES=()/MODULES=(nvidia nvidia_modeset nvidia_uvm nvidia_drm)/g' /etc/mkinitcpio.conf
- case $kerneltype in
- 1) pacman -S linux-headers --noconfirm ;;
- 2) pacman -S linux-zen-headers --noconfirm ;;
- *) printf "Invalid kernel" && exit 1 ;;
- esac
+ echo "options hid_apple fnmode=0" > /etc/modprobe.d/hid_apple.conf
+ pacman -S grub os-prober efibootmgr --noconfirm
+ grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=grub
+ sed -i "s#GRUB_CMDLINE_LINUX_DEFAULT=.*#GRUB_CMDLINE_LINUX_DEFAULT=\"loglevel=3 quiet options root=PARTUUID=$PARTUUID_ROOT rw nvidia-drm.modeset=1 modeset=1 fbdev=1 intel_iommu=on\"#g" /etc/default/grub
+ sed -i -e 's/MODULES=()/MODULES=(nvidia nvidia_modeset nvidia_uvm nvidia_drm)/g' /etc/mkinitcpio.conf
+ case $kerneltype in
+ 1) pacman -S linux-headers --noconfirm ;;
+ 2) pacman -S linux-zen-headers --noconfirm ;;
+ *) printf "Invalid kernel" && exit 1 ;;
+ esac
}
customkernel()
{
- latestkernel=$(curl -s https://www.kernel.org/ | grep -A 1 'latest_link' | grep -oP '[0-9]+\.[0-9]+(\.[0-9]+)?' | head -n 1)
- majorversion=$(echo "$latestkernel" | cut -d'.' -f1)
- pacman -S efibootmgr --noconfirm
- cd /usr/src/
- curl -Lo /usr/src/linux.tar.xz "https://cdn.kernel.org/pub/linux/kernel/v$majorversion.x/linux-$latestkernel.tar.xz"
- tar -xf "linux.tar.xz"
- rm -f "linux.tar.xz"
- mv "linux-$latestkernel" "linux"
- cd "linux"
- mv /usr/src/.config .config
- sed -i -e '/^CONFIG_CMDLINE="root=PARTUUID=.*/c\' -e "CONFIG_CMDLINE=\"root=PARTUUID=$PARTUUID_ROOT init=/sbin/dinit-init nvidia_drm.modeset=1 nvidia_drm.fbdev=1\"" .config
- pacman -S bc perl bison make diffutils gcc flex rsync --noconfirm
- make olddefconfig
- make menuconfig
- make -j"$(nproc)"
- make modules
- make modules_install
- make headers
- make headers_install
- mkdir -p /boot/EFI/BOOT
- cp arch/x86/boot/bzImage /boot/EFI/BOOT/BOOTX64.EFI
- _diskdrivewop="${diskdrive%p}"
- efibootmgr -c -d /dev/"$_diskdrivewop" -p "${partitions%% *}" -L "linux" -l '\EFI\BOOT\BOOTX64.EFI'
+ latestkernel=$(curl -s https://www.kernel.org/ | grep -A 1 'latest_link' | grep -oP '[0-9]+\.[0-9]+(\.[0-9]+)?' | head -n 1)
+ majorversion=$(echo "$latestkernel" | cut -d'.' -f1)
+ pacman -S efibootmgr --noconfirm
+ cd /usr/src/
+ curl -Lo /usr/src/linux.tar.xz "https://cdn.kernel.org/pub/linux/kernel/v$majorversion.x/linux-$latestkernel.tar.xz"
+ tar -xf "linux.tar.xz"
+ rm -f "linux.tar.xz"
+ mv "linux-$latestkernel" "linux"
+ cd "linux"
+ mv /usr/src/.config .config
+ sed -i -e '/^CONFIG_CMDLINE="root=PARTUUID=.*/c\' -e "CONFIG_CMDLINE=\"root=PARTUUID=$PARTUUID_ROOT init=/sbin/dinit-init nvidia_drm.modeset=1 nvidia_drm.fbdev=1\"" .config
+ pacman -S bc perl bison make diffutils gcc flex rsync --noconfirm
+ make olddefconfig
+ make menuconfig
+ make -j"$(nproc)"
+ make modules
+ make modules_install
+ make headers
+ make headers_install
+ mkdir -p /boot/EFI/BOOT
+ cp arch/x86/boot/bzImage /boot/EFI/BOOT/BOOTX64.EFI
+ _diskdrivewop="${diskdrive%p}"
+ efibootmgr -c -d /dev/"$_diskdrivewop" -p "${partitions%% *}" -L "linux" -l '\EFI\BOOT\BOOTX64.EFI'
}
case $kerneltype in
- 1 | 2) binkernel && grub-mkconfig -o /boot/grub/grub.cfg ;;
- 3) customkernel ;;
- *) printf "Invalid kernel" && exit 1 ;;
+ 1 | 2) binkernel && grub-mkconfig -o /boot/grub/grub.cfg ;;
+ 3) customkernel ;;
+ *) printf "Invalid kernel" && exit 1 ;;
esac
# use dash as sh
@@ -119,4 +119,6 @@ ln -sf /etc/dinit.d/dbus /etc/dinit.d/boot.d/
pacman -S nvidia-open-dkms nvidia-utils --noconfirm
pacman -S libva-nvidia-driver --noconfirm
+rm -f /home/"$username"/.bash*
+
rm /post_chroot.sh