Arch-Linux-install-script/btw-i-use-arch

22 lines
282 B
Plaintext
Raw Normal View History

2021-10-23 02:15:42 -04:00
#!/bin/sh
2021-10-23 14:54:10 -04:00
sfdisk /dev/sda < partition_table;
2021-10-23 02:15:42 -04:00
2021-10-23 15:03:58 -04:00
mkfs.xfs -f /dev/sda1;
2021-10-23 02:15:42 -04:00
2021-10-23 14:54:10 -04:00
mount /dev/sda1 /mnt;
2021-10-23 02:15:42 -04:00
2021-10-23 14:54:10 -04:00
pacstrap /mnt base linux && genfstab /mnt > /mnt/etc/fstab;
2021-10-23 02:15:42 -04:00
2021-10-23 14:54:10 -04:00
arch-chroot /mnt;
pacman -Sy --noconfirm grub;
grub-install /dev/sda;
grub-mkconfig -o /boot/grub/grub.cfg;
exit;
reboot;