Advertisement
daddy_jones

darch error

Dec 6th, 2019
321
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.58 KB | None | 0 0
  1. #!/bin/bash
  2. set -e
  3. # export DEBIAN_FRONTEND=noninteractive
  4.  
  5. pacman-key --init
  6. pacman-key --populate archlinux
  7.  
  8. pacman -Sy --noconfirm
  9. pacman -S --noconfirm archlinux-keyring
  10.  
  11. pacman -S --noconfirm wget sed
  12. wget -q "https://www.archlinux.org/mirrorlist/?country=GB&country=IS&protocol=https&ip_version=4&use_mirror_status=on" \
  13.  | sed -e "s/#Server/Server/g" \
  14.  > /etc/pacman.d/mirrorlist
  15.  
  16. pacman -Sy --noconfirm
  17.  
  18. pacman -S --noconfirm base base-devel
  19.  
  20. 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