Sha256: 8d206f362e6899b13b1fcae4d0d4044b1160fb2cf3f33b5f08e55c88b9a26041
Contents?: true
Size: 349 Bytes
Versions: 16
Compression:
Stored size: 349 Bytes
Contents
#!/bin/bash # Requires # pacman.sh # Chroot into the new system and set up SSH access arch-chroot /mnt <<ENDCHROOT pacman -S --noconfirm openssh # Make sure SSH is allowed echo "sshd: ALL" > /etc/hosts.allow # And everything else isn't echo "ALL: ALL" > /etc/hosts.deny # Make sure sshd starts on boot systemctl enable sshd.service ENDCHROOT
Version data entries
16 entries across 16 versions & 1 rubygems