aboutsummaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
authorAwnrt <roman.levikoff@gmail.com>2024-03-30 20:41:02 +0300
committerAwnrt <roman.levikoff@gmail.com>2024-03-30 20:41:02 +0300
commit817ed8a396d4c6eaf58ee7f11d730d3862152008 (patch)
tree35228c7b5309066a52129b7668163fb1386887f7 /install.sh
parent3e41cb3cdd7aad35c508b5b8fcc2bc3c86b53651 (diff)
install scripts
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh48
1 files changed, 48 insertions, 0 deletions
diff --git a/install.sh b/install.sh
new file mode 100755
index 0000000..4409a43
--- /dev/null
+++ b/install.sh
@@ -0,0 +1,48 @@
+read -p "Enter disk label (e.g., sda): " disk_drive
+read -p "Enter comma-separated partition numbers (e.g., 5,6,7 for 5 boot 6 swap 7 root): " partitions
+IFS=',' read -r -a partition_array <<< "$partitions"
+
+root_drive="$disk_drive${partition_array[2]}"
+swap_drive="$disk_drive${partition_array[1]}"
+boot_drive="$disk_drive${partition_array[0]}"
+
+read -p "Hostname: " _hostname
+
+read -p "Username: " _username
+
+read -p "root password: " _rootpasswd
+
+read -p "user password: " _userpasswd
+
+mkfs.ext4 /dev/$root_drive
+mkswap /dev/$swap_drive
+swapon /dev/$swap_drive
+mkfs.fat -F 32 /dev/$boot_drive
+
+mount /dev/$root_drive /mnt
+mkdir /mnt/boot
+mkdir /mnt/home
+mkdir /mnt/boot/efi
+mount /dev/$boot_drive /mnt/boot/efi
+
+rc-service ntpd start
+
+pacman -Sy --confirm
+pacman -S pacman-contrib --noconfirm
+
+rankmirrors -n 6 /etc/pacman.d/mirrorlist > /etc/pacman.d/mirrorlist
+
+basestrap /mnt base base-devel openrc elogind-openrc
+basestrap /mnt linux linux-firmware
+fstabgen -U /mnt >> /mnt/etc/fstab
+
+cp post_chroot.sh /mnt
+
+export root_drive
+export swap_drive
+export boot_drive
+export _hostname
+export _rootpasswd
+export _userpasswd
+
+artix-chroot /mnt ./post_chroot.sh