blob: a658d126f8bb39e4f90c7cb7580b5e1cdfb055b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
pacman-key --init
pacman-key --refresh-keys
pacman-key --populate
pacman -Syy
pacman -S --noconfirm openssh tmux git
systemctl start sshd
echo "root:welcome" | chpasswd
curl -s https://raw.githubusercontent.com/eoli3n/archiso-zfs/master/init | bash
git clone https://git.cjennings.net/archsetup.git
|