archlinux: Update install scripts

Instead of running two systemctl commands (start and enable),
one can simply use `systemctl enable --now` instead.

The grub command was removed since I never used it and haven't
found a need to do so.
This commit is contained in:
Donovan Glover
2018-11-15 21:15:15 -05:00
parent df766c3a48
commit 200d2b9e7a
3 changed files with 1 additions and 9 deletions

View File

@ -14,16 +14,12 @@ timedatectl set-ntp true
# enable boot for it. Then, create a primary swap partition with
# the remaining disk space.
parted /dev/sda mklabel msdos
parted /dev/sda mkpart primary ext4 1MiB 60GiB
parted /dev/sda set 1 boot on
parted /dev/sda mkpart primary linux-swap 60GiB 100%
# Format sda1 with ext4 and sda2 with swap
mkfs -t ext4 /dev/sda1
mkswap /dev/sda2
# Enable the swap partition