Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- set -e
- # export DEBIAN_FRONTEND=noninteractive
- pacman-key --init
- pacman-key --populate archlinux
- pacman -Sy --noconfirm
- pacman -S --noconfirm archlinux-keyring
- pacman -S --noconfirm wget sed
- wget -q "https://www.archlinux.org/mirrorlist/?country=GB&country=IS&protocol=https&ip_version=4&use_mirror_status=on" \
- | sed -e "s/#Server/Server/g" \
- > /etc/pacman.d/mirrorlist
- pacman -Sy --noconfirm
- pacman -S --noconfirm base base-devel
- pacman -S --noconfirm linux linux-firmware lvm2 e2fsprogs device-mapper dhcpd diffutils inetutils less sysfsutils usbutils which
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement