archsetup

simple, hacky scripts I use to setup Arch Linux
git clone git://git.hanetzok.net/archsetup
Log | Files | Refs | README

install.sh (271B)


      1 #!/bin/bash
      2 
      3 [[ -d /mnt/boot ]] || { echo "Mount your partitions first!"; exit 1; }
      4 
      5 pacstrap /mnt base base-devel grub lynx networkmanager neovim man-db
      6 genfstab -U /mnt >> /mnt/etc/fstab
      7 cp ./post-install.sh /mnt/tmp/post-install.sh
      8 cp ./progs.list /mnt/tmp/progs.list