├── README.md ├── airootfs ├── etc │ ├── archzfs.gpg │ ├── hostname │ ├── locale.conf │ ├── localtime │ ├── mkinitcpio.conf │ ├── mkinitcpio.d │ │ └── linux.preset │ ├── modprobe.d │ │ └── broadcom-wl.conf │ ├── motd │ ├── passwd │ ├── resolv.conf │ ├── shadow │ ├── ssh │ │ └── sshd_config │ ├── systemd │ │ ├── journald.conf.d │ │ │ └── volatile-storage.conf │ │ ├── logind.conf.d │ │ │ └── do-not-suspend.conf │ │ ├── network │ │ │ ├── 20-ethernet.network │ │ │ └── 20-wireless.network │ │ └── system │ │ │ ├── choose-mirror.service │ │ │ ├── dbus-org.freedesktop.network1.service │ │ │ ├── dbus-org.freedesktop.resolve1.service │ │ │ ├── etc-pacman.d-gnupg.mount │ │ │ ├── getty@tty1.service.d │ │ │ └── autologin.conf │ │ │ ├── livecd-alsa-unmuter.service │ │ │ ├── livecd-talk.service │ │ │ ├── multi-user.target.wants │ │ │ ├── choose-mirror.service │ │ │ ├── iwd.service │ │ │ ├── livecd-talk.service │ │ │ ├── pacman-init.service │ │ │ ├── reflector.service │ │ │ ├── systemd-networkd.service │ │ │ └── systemd-resolved.service │ │ │ ├── network-online.target.wants │ │ │ └── systemd-networkd-wait-online.service │ │ │ ├── pacman-init.service │ │ │ ├── reflector.service.d │ │ │ └── archiso.conf │ │ │ ├── sockets.target.wants │ │ │ └── systemd-networkd.socket │ │ │ ├── sound.target.wants │ │ │ └── livecd-alsa-unmuter.service │ │ │ └── systemd-networkd-wait-online.service.d │ │ │ └── wait-for-only-one-interface.conf │ └── xdg │ │ └── reflector │ │ └── reflector.conf ├── root │ ├── .automated_script.sh │ ├── .zlogin │ └── customize_airootfs.sh └── usr │ └── local │ ├── bin │ ├── Installation_guide │ ├── choose-mirror │ └── livecd-sound │ └── share │ └── livecd-sound │ └── asound.conf.in ├── efiboot └── loader │ ├── entries │ ├── archiso-x86_64-linux.conf │ └── archiso-x86_64-speech-linux.conf │ └── loader.conf ├── packages.x86_64 ├── pacman.conf ├── profiledef.sh └── syslinux ├── archiso_head.cfg ├── archiso_pxe-linux.cfg ├── archiso_pxe.cfg ├── archiso_sys-linux.cfg ├── archiso_sys.cfg ├── archiso_tail.cfg ├── splash.png └── syslinux.cfg /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/README.md -------------------------------------------------------------------------------- /airootfs/etc/archzfs.gpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /airootfs/etc/hostname: -------------------------------------------------------------------------------- 1 | # 2 | # SPDX-License-Identifier: GPL-3.0-or-later 3 | archiso 4 | -------------------------------------------------------------------------------- /airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | # 2 | # SPDX-License-Identifier: GPL-3.0-or-later 3 | 4 | LANG=en_US.UTF-8 5 | -------------------------------------------------------------------------------- /airootfs/etc/localtime: -------------------------------------------------------------------------------- 1 | /usr/share/zoneinfo/UTC -------------------------------------------------------------------------------- /airootfs/etc/mkinitcpio.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/airootfs/etc/mkinitcpio.conf -------------------------------------------------------------------------------- /airootfs/etc/mkinitcpio.d/linux.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/airootfs/etc/mkinitcpio.d/linux.preset -------------------------------------------------------------------------------- /airootfs/etc/modprobe.d/broadcom-wl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/airootfs/etc/modprobe.d/broadcom-wl.conf -------------------------------------------------------------------------------- /airootfs/etc/motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/airootfs/etc/motd -------------------------------------------------------------------------------- /airootfs/etc/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/airootfs/etc/passwd -------------------------------------------------------------------------------- /airootfs/etc/resolv.conf: -------------------------------------------------------------------------------- 1 | /run/systemd/resolve/stub-resolv.conf -------------------------------------------------------------------------------- /airootfs/etc/shadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/airootfs/etc/shadow -------------------------------------------------------------------------------- /airootfs/etc/ssh/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/airootfs/etc/ssh/sshd_config -------------------------------------------------------------------------------- /airootfs/etc/systemd/journald.conf.d/volatile-storage.conf: -------------------------------------------------------------------------------- 1 | # 2 | # SPDX-License-Identifier: GPL-3.0-or-later 3 | 4 | [Journal] 5 | Storage=volatile 6 | -------------------------------------------------------------------------------- /airootfs/etc/systemd/logind.conf.d/do-not-suspend.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/airootfs/etc/systemd/logind.conf.d/do-not-suspend.conf -------------------------------------------------------------------------------- /airootfs/etc/systemd/network/20-ethernet.network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/airootfs/etc/systemd/network/20-ethernet.network -------------------------------------------------------------------------------- /airootfs/etc/systemd/network/20-wireless.network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/airootfs/etc/systemd/network/20-wireless.network -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/choose-mirror.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/airootfs/etc/systemd/system/choose-mirror.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/dbus-org.freedesktop.network1.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-networkd.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/dbus-org.freedesktop.resolve1.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-resolved.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/etc-pacman.d-gnupg.mount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/airootfs/etc/systemd/system/etc-pacman.d-gnupg.mount -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/getty@tty1.service.d/autologin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/airootfs/etc/systemd/system/getty@tty1.service.d/autologin.conf -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/livecd-alsa-unmuter.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/airootfs/etc/systemd/system/livecd-alsa-unmuter.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/livecd-talk.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/airootfs/etc/systemd/system/livecd-talk.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/multi-user.target.wants/choose-mirror.service: -------------------------------------------------------------------------------- 1 | ../choose-mirror.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/multi-user.target.wants/iwd.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/iwd.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/multi-user.target.wants/livecd-talk.service: -------------------------------------------------------------------------------- 1 | /etc/systemd/system/livecd-talk.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/multi-user.target.wants/pacman-init.service: -------------------------------------------------------------------------------- 1 | ../pacman-init.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/multi-user.target.wants/reflector.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/reflector.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/multi-user.target.wants/systemd-networkd.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-networkd.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/multi-user.target.wants/systemd-resolved.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-resolved.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/network-online.target.wants/systemd-networkd-wait-online.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-networkd-wait-online.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/pacman-init.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/airootfs/etc/systemd/system/pacman-init.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/reflector.service.d/archiso.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/airootfs/etc/systemd/system/reflector.service.d/archiso.conf -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/sockets.target.wants/systemd-networkd.socket: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-networkd.socket -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/sound.target.wants/livecd-alsa-unmuter.service: -------------------------------------------------------------------------------- 1 | ../livecd-alsa-unmuter.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/systemd-networkd-wait-online.service.d/wait-for-only-one-interface.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/airootfs/etc/systemd/system/systemd-networkd-wait-online.service.d/wait-for-only-one-interface.conf -------------------------------------------------------------------------------- /airootfs/etc/xdg/reflector/reflector.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/airootfs/etc/xdg/reflector/reflector.conf -------------------------------------------------------------------------------- /airootfs/root/.automated_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/airootfs/root/.automated_script.sh -------------------------------------------------------------------------------- /airootfs/root/.zlogin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/airootfs/root/.zlogin -------------------------------------------------------------------------------- /airootfs/root/customize_airootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/airootfs/root/customize_airootfs.sh -------------------------------------------------------------------------------- /airootfs/usr/local/bin/Installation_guide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/airootfs/usr/local/bin/Installation_guide -------------------------------------------------------------------------------- /airootfs/usr/local/bin/choose-mirror: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/airootfs/usr/local/bin/choose-mirror -------------------------------------------------------------------------------- /airootfs/usr/local/bin/livecd-sound: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/airootfs/usr/local/bin/livecd-sound -------------------------------------------------------------------------------- /airootfs/usr/local/share/livecd-sound/asound.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/airootfs/usr/local/share/livecd-sound/asound.conf.in -------------------------------------------------------------------------------- /efiboot/loader/entries/archiso-x86_64-linux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/efiboot/loader/entries/archiso-x86_64-linux.conf -------------------------------------------------------------------------------- /efiboot/loader/entries/archiso-x86_64-speech-linux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/efiboot/loader/entries/archiso-x86_64-speech-linux.conf -------------------------------------------------------------------------------- /efiboot/loader/loader.conf: -------------------------------------------------------------------------------- 1 | # 2 | # SPDX-License-Identifier: GPL-3.0-or-later 3 | 4 | timeout 15 5 | default archiso-x86_64-linux.conf 6 | -------------------------------------------------------------------------------- /packages.x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/packages.x86_64 -------------------------------------------------------------------------------- /pacman.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/pacman.conf -------------------------------------------------------------------------------- /profiledef.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/profiledef.sh -------------------------------------------------------------------------------- /syslinux/archiso_head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/syslinux/archiso_head.cfg -------------------------------------------------------------------------------- /syslinux/archiso_pxe-linux.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/syslinux/archiso_pxe-linux.cfg -------------------------------------------------------------------------------- /syslinux/archiso_pxe.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/syslinux/archiso_pxe.cfg -------------------------------------------------------------------------------- /syslinux/archiso_sys-linux.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/syslinux/archiso_sys-linux.cfg -------------------------------------------------------------------------------- /syslinux/archiso_sys.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/syslinux/archiso_sys.cfg -------------------------------------------------------------------------------- /syslinux/archiso_tail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/syslinux/archiso_tail.cfg -------------------------------------------------------------------------------- /syslinux/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/syslinux/splash.png -------------------------------------------------------------------------------- /syslinux/syslinux.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HougeLangley/archzfs-iso/HEAD/syslinux/syslinux.cfg --------------------------------------------------------------------------------