Install

Install Arch Linux

Disk

Boot Arch linux.

Check your disks.

fdisk -l

Create a partition.

fdisk /dev/sda

Hit o (letter o) to create a new DOS disklabel.

Hit n to create a new partition.

Hit p for primary partition.

You accept the defaults then.

Hit w to write your changes.

Create a filesystem.

mkfs.ext4 /dev/sda1

Configure pacman

Check if you have internet.

ping google.com

If not, run:

Sync pacman.

Install reflector.

Backup your mirror list.

Set mirrors form your country.

Install

Mount the disk.

Run pacstrap.

Setup fstab.

Chroot.

List available timezones.

Set your timezone.

Setup locale.

Setup your hostname.

Create /etc/hosts file.

With the following content.

Setup root password.

Install grub.

Configure networking following the steps here.

Reboot.

References

https://itsfoss.com/install-arch-linux/

https://www.howtoforge.com/tutorial/arch-linux-installation-with-xfce-desktop/

Last updated