-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.sh
More file actions
26 lines (16 loc) · 721 Bytes
/
install.sh
File metadata and controls
26 lines (16 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#! /bin/bash
clear
echo "======================================================================"
echo "====================== Setting Up Arch Linux ========================="
echo "======================================================================"
sleep 2
#Sync the pacman repository
pacman -Syy
#Install Arch Linux essentials
pacstrap /mnt base linux linux-lts linux-firmware vim sudo --noconfirm --needed
#Generating fstab file
genfstab -U /mnt >> /mnt/etc/fstab
echo "======================================================================"
echo "======================= Changing to rootfs ==========================="
echo "======================================================================"
sleep 2