File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,6 +22,9 @@ Also, many distributions provide mirrors at different geographical places and UR
2222---
2323
2424
25+ - Arch (https://archlinux.org/ )
26+ - vm ` DISTRO=arch DISTRO_ISO=/path/to/archlinux-2022.02.01-x86_64.iso make extract `
27+ - rootfs ` DISTRO=arch DISTRO_ROOTFS=/path/to/archlinux-bootstrap-2022.02.01-x86_64.tar.gz make extract `
2528- Artix (https://artixlinux.org/ )
2629 - vm ` DISTRO=artix DISTRO_ISO=/path/to/artix-base-openrc-20220123-x86_64.iso make extract `
2730- Debian (https://www.debian.org/ )
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ source distro_extractor/arch-based/inc.sh || exit 1
4+
5+ VM_USER=root
6+ VM_PASS=arch
7+
8+ function boot_info() {
9+ echo " Go to $DISTRO window"
10+ echo " Select Arch Linux install medium"
11+ echo " After boot finished"
12+ echo " Run 'passwd'"
13+ echo " Type 'arch' and hit enter"
14+ echo " Type 'arch' and hit enter again to confirm"
15+ }
Original file line number Diff line number Diff line change 1+ echo " Starting installer"
2+
3+ mkfs.ext4 -m 0 -F /dev/sda
4+ mount /dev/sda /mnt/
5+
6+ pacstrap /mnt $( cat /tmp/packages.arch.txt | xargs)
7+
8+ sync
9+ umount /mnt/
10+ poweroff
You can’t perform that action at this time.
0 commit comments