Arch Linux Setup
Auto Setup Script
- Step 1: Install Required Packages
sudo pacman -S git curl wget nano base-devel python
- Step 2: Clone the Repository
git clone https://github.com/hirusha-adi/myLinuxSetup.git
- Step 3: Run the Script
cd myLinuxSetup/desktop
python arch.py
Manual Setup
Update & Upgrade System
sudo pacman -Syyu
Installing yay
-
One Liner
sudo pacman -Sy base-devel --noconfirm && git clone https://aur.archlinux.org/yay.git && cd yay && makepkg -si && cd .. && rm -rf yay
-
Manual Method
sudo pacman -Sy base-devel --no-confirm
git clone https://aur.archlinux.org/yay.git
cd yay
makepkg -si
now, remove the yay directory as its no longer needed
cd .. & rm -rf yay