-
-
Save limeyd/fa7532f180f6f504f8d0 to your computer and use it in GitHub Desktop.
Arch Simple Install
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ping -c 3 www.google.com | |
gdisk /dev/sda | |
mkfs.vfat -F32 /dev/sda1 | |
mkfs.ext4 /dev/sda2 | |
mkfs.ext4 /dev/sda3 | |
mount /dev/sda2 /mnt | |
mkdir /mnt/boot /mnt/boot | |
mount /dev/sda1 /mnt/boot | |
mount /dev/sda3 /mnt/home | |
pacstrap -i /mnt base base-devel | |
genfstab -U -p /mnt >> /mnt/etc/fstab | |
vi /mnt/etc/fstab | |
arch-chroot /mnt /bin/bash | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment