-
-
Save oprypin/7ad5c9049ab7467130af to your computer and use it in GitHub Desktop.
This file contains hidden or 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
alias rm false | |
parted /dev/?da | |
mklabel msdos | |
mkpart primary ext4 1MiB 100% | |
set 1 boot on | |
quit | |
mkfs.ext4 /dev/sda1 | |
mount /dev/sda1 /mnt | |
mkdir /mnt/boot | |
mount /dev/sda1 /mnt/boot | |
pacstrap -i /mnt base base-devel | |
[enter] | |
[enter] | |
[enter] | |
genfstab -U /mnt > /mnt/etc/fstab | |
arc[tab] /mnt /bin/bash | |
echo 'en_US.UTF-8 UTF-8' > /etc/locale.gen | |
locale-gen | |
ln -sf /usr/share/zoneinfo/UTC /etc/localtime | |
pacman -S grub | |
[enter] | |
grub-install /dev/sda | |
grub-mkconfig -o /boot/grub/grub.cfg | |
echo twitch > /etc/hostname | |
systemctl enable dhcpcd | |
passwd -d root | |
exit | |
reboot |
This file contains hidden or 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
pacman -S xorg-server xorg-xinit xterm xf86-video-vesa | |
[enter] | |
[enter] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment