This is a minimal installation guide targeted to get Arch Linux running on Vultr. For simplicity, 'time zone', 'hostname', 'locale' and 'initramfs' are omited, you can configure them later by yourself.
For simplicity, we use single root partition.
# fdisk /dev/vda
# n
# enter(use default)
# enter(use default)
# enter(use default)
# enter(use default)
# w
# mkfs.ext4 /dev/vda1
# mount /dev/vda1 /mnt
# pacstrap /mnt base
# genfstab -U /mnt >> /mnt/etc/fstab
# arch-chroot /mnt
# systemctl enable dhcpcd
# passwd
# (enter your passwd)
# (enter again)
# pacman -S grub
# grub-install /dev/vda
# grub-mkconfig -o /boot/grub/grub.cfg
# pacman -S openssh
# systemctl enable sshd
# exit
# shutdown now
Finally, goto https://my.vultr.com/ and remove ISO. (your arch will start to boot)
Thanks this was super helpful, the official docs recommends a lot of extra things and misses a few critical things.