[OLD ARCHIVE] Scripts for full Arch Install
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
beech 16baee96e2 Updates 2 years ago
LICENSE Initial commit 2 years ago
README.md Updates 2 years ago
preinstall1.sh Updates 2 years ago
preinstall2.sh Update 2 years ago
setup.sh Added comment to setup 2 years ago
software.sh Created 2 years ago

README.md

Arch Linux Install Scripts

My modified ArchMatic scripts for a full Arch install & configuration with DE, support packages, and apps. Forked for VMWare optimization.


Arch Live ISO (Pre-Install)

This step installs arch to your hard drive. IT WILL FORMAT THE DISK

Boot into your Arch ISO

# Installer 1
curl https://git.boppdev.net/beech/ArchScripts/raw/branch/main/preinstall1.sh -o preinstall1.sh
sh preinstall1.sh

# Creating user account
arch-chroot /mnt

passwd
useradd -m -g users -G wheel,storage,power -s /bin/bash USERNAME
passwd USERNAME
sed -i 's/^# %wheel ALL=(ALL) ALL/%wheel ALL=(ALL) ALL/' /etc/sudoers
echo "Defaults rootpw" >> /etc/sudoers

ip link # Take note of your network adapter name (ex: ens33)

# Installer 2 Setup
sudo pacman -S nano curl --noconfirm --needed
curl https://git.boppdev.net/beech/ArchScripts/raw/branch/main/preinstall2.sh -o preinstall2.sh

# Edit network adapter name for dhcpcd service in script line 43
nano preinstall2.sh

# Installer 2
sh preinstall2.sh
exit
umount -R /mnt

After First Boot

pacman -S --noconfirm pacman-contrib curl git
git clone https://git.boppdev.net/beech/ArchScripts
cd ArchScripts
sh setup.sh
sh software.sh

System Description

GNOME Desktop Enviornment GDM Login Manager

Booting using systemd

Credits

Credits to rickellis - ArchMatic for inspiration