Arch Guide
01. Setting up the installer
Creating a boot medium
First, download the ISO file: https://archlinux.org/download/
On that page, you can either choose to download the image using a torrent (this is the preferred way) or using a mirror (towards the bottom of the page, find one for your country). Choose the file called archlinux-[DATE]-x86_64.iso
and validate it using the signature (the .sig file, if you feel like it).
Now, either load the ISO into your virtual machine software of choice or write it to a USB drive or DVD using something like Rufus or balenaEtcher.
Once that's done, make sure "Secure boot" is disabled in your BIOS, select the drive you created and boot from it.
Wait until you see root@archiso ~ # _
pop up and blink on the screen (root is red).
In case you're new to this kind of environment...
The left side of the blinking underscore is your cursor, it is waiting for you to enter commands (press enter to execute a given command after typing it in). You can use your arrow keys to move it left and right, up and down switches between recently executed commands.
root
stands for the current user that is logged in, root is essentially the administrator account.
archiso
stands for your hostname (your computer's name on the network).
~
stands for the current directory you are in (~ is short for the logged in user's home/personal folder, the path is /home/[USERNAME] or /root if the user is "root").
We will be installing a graphical user interface later on, don't worry.
Keyboard layout
Note that you only need to do this if your keyboard does not use the standard US layout.
If you don't know how to enter the following commands, look up a picture of a/your keyboard with the US layout and press the corresponding keys.
List the possible layouts:localectl list-keymaps
Search the list for your country code (e.g. "de" for Germany):localectl list-keymaps | grep de
If you're still not sure, try searching the internet, maybe look for pictures of the possible keyboard layouts.
Load the correct layout (e.g. "de-latin1"):loadkeys de-latin1
Make sure the correct keyboard layout is loaded by typing a bit (especially symbols) to see if they are the right keys.
Note that this only temporarily sets the keyboard layout for the Arch installer, you will have to do this every time you boot the installer and later on during the installation as well, so remember what layout you used!
Internet connection
For the installation, it is best to use an ethernet connection. If you really have to use Wi-Fi, follow the steps here to connect to your network:
https://wiki.archlinux.org/title/Iwd#iwctl
Make sure your IP address makes sense and the state for the network adapter you intend to use is UP (green) in the output of the following command:ip address
Now try to connect to a server of your choice (e.g. uwap.org) to test your connection:ping uwap.org
The output should look something like this, otherwise you're not properly connected:PING uwap.org (2a01:4f8:c012:bcd7::1) 56 data bytes
64 bytes from uwap.org (2a01:4f8:c012:bcd7::1): icmp_seq=1 ttl=58 time=23.0 ms
64 bytes from uwap.org (2a01:4f8:c012:bcd7::1): icmp_seq=2 ttl=58 time=22.1 ms
64 bytes from uwap.org (2a01:4f8:c012:bcd7::1): icmp_seq=3 ttl=58 time=22.7 ms
Once you know you're connected, you can press Ctrl+C
to stop the ping program.
Next: Partition your drive