Arch Linux install helpers.
Find a file
2025-12-08 05:11:32 +00:00
functions First commit 2025-11-22 23:15:27 +00:00
notes First commit 2025-11-22 23:15:27 +00:00
pkg First commit 2025-11-22 23:15:27 +00:00
arch.sh First commit 2025-11-22 23:15:27 +00:00
homelab.sh First commit 2025-11-22 23:15:27 +00:00
installer.sh First commit 2025-11-22 23:15:27 +00:00
passthrough.sh Update mirrorlist url 2025-12-08 05:11:32 +00:00
README.md First commit 2025-11-22 23:15:27 +00:00
recover.sh First commit 2025-11-22 23:15:27 +00:00
virtual-machine.sh Update mirrorlist url 2025-12-08 05:11:32 +00:00

MyveArch

This repo is a compilation of installation scripts written in bash that install Arch Linux on any x86_64 EFI system. From a home server (homelab.sh) to a laptop or desktop computer (arch.sh), these scripts are highly customizable and can be tailored to very specific needs.

:: Pre-installation

Acquire an installation ISO and burn it into a USB drive:

dd bs=4M if=${/path/to/archlinux-version-x86_64.iso} of=${/dev/disk/by-id/usb-My_flash_drive} conv=fsync oflag=direct status=progress

:: Usage

Download the script of choice and execute it in the terminal:

wget https://myvelabs.com/lab/archlinux/raw/branch/master/arch.sh
bash arch.sh

OR

curl --fail -s -L -O https://myvelabs.com/lab/archlinux/raw/branch/master/homelab.sh
bash homelab.sh

OR

git clone https://myvelabs.com/lab/archlinux.git
cd archlinux/
bash arch.sh

:: Installation

The following flags are available:

-s, --ssh-key             Authorized SSH public key (one entry per flag, enclosed in quotes)
-c, --cache               Pacman cache server address
-k, --kernel              Linux kernel (eg, linux, linux-lts, linux-hardened, linux-zen)
-f, --filesystem          Choice of filesystem (eg, ext4, btrfs, zfs)
-o, --option              Arch installation setup, if known

Fill out the prompts and you'll have a full-fledged Arch Linux system up and running in no time.