LARBS/chroot.sh
2017-10-05 00:08:51 -07:00

16 lines
401 B
Bash

#Potential variables: timezone, hostname
ln -sf /usr/share/zoneinfo/America/New_York /etc/localtime
hwclock --systohc
echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen
echo "en_US ISO-8859-1" >> /etc/locale.gen
locale-gen
echo "test" > /etc/hostname
pacman -S grub && grub-install --target=i386-pc /dev/sda && grub-mkconfig -o /boot/grub/grub.cfg
curl -O http://lukesmith.xyz/larbs/root.sh && root.sh