#!/bin/bash #This is a lazy script I have for auto-installing Arch. #It's not officially part of LARBS, but I use it for testing. #DO NOT RUN THIS YOURSELF because Step 1 is it reformatting /dev/sda WITHOUT confirmation, #which means RIP in peace qq your data unless you've already backed up all of your drive. timedatectl set-ntp true cat <> /mnt/etc/fstab curl http://lukesmith.xyz/larbs/chroot.sh > /mnt/chroot.sh arch-chroot /mnt bash chroot.sh rm /mnt/chroot.sh echo "Eject CD/ROM? [y/N]" read yn case $yn in [Yy]* ) eject ;; [yes]* ) eject ;; [Yes]* ) eject ;; esac echo "Reboot now? [y/N]" read yn case $yn in [Yy]* ) reboot ;; [yes]* ) reboot ;; [Yes]* ) reboot ;; esac echo "Return to chroot environment?" read yn case $yn in [Yy]* ) arch-chroot /mnt ;; [yes]* ) arch-chroot /mnt ;; [Yes]* ) arch-chroot /mnt ;; esac