start:system:artix
Differences
This shows you the differences between two versions of the page.
start:system:artix [2024/12/29 06:55] – [Configure the base system] marlonivo | start:system:artix [Unknown date] (current) – removed - external edit (Unknown date) 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Full Artix Installation Guide ====== | ||
- | Go to https:// | ||
- | We install the system from bottom up so just download one of those ISO Files (it doesnt matter what you choose). | ||
- | * artix-base-dinit | ||
- | * artix-base-openrc | ||
- | * artix-base-runit | ||
- | * artix-base-s6 | ||
- | |||
- | ===== Create a Artix USB-Stick ====== | ||
- | ---- | ||
- | After you downloaded the ISO, write your stick with it. | ||
- | < | ||
- | sudo dd if=path/ | ||
- | </ | ||
- | |||
- | ===== Boot into your USB Stick ===== | ||
- | ---- | ||
- | **For Windows:** | ||
- | - Press and hold the " | ||
- | - Click Troubleshoot > Advanced Options > UEFI Firmware Settings.Once you’re in the BIOS or UEFI firmware menu, look for some sort of “Boot” option menu. | ||
- | - You will find a boot order list. If "USB drive" is above "hard drive" in your boot order, your computer will try the USB drive and thats what we want, which is why you should put your USB Stick (whatever name it is) on top of the list. | ||
- | |||
- | |||
- | **For Linux:** | ||
- | You know what to do. | ||
- | |||
- | ===== Partitioning your Drives ===== | ||
- | ---- | ||
- | After you booted into Artix you will be welcomed by a small GUI, giving you the option to choose your keyboard layout and language. After you did that, press 'from Stick/ | ||
- | |||
- | < | ||
- | username: root | ||
- | password: artix | ||
- | </ | ||
- | |||
- | In order to partition your drives, we use the preinstalled tool fdisk | ||
- | < | ||
- | fdisk / | ||
- | </ | ||
- | |||
- | - **Delete Partitions: | ||
- | - **BOOT Partition: | ||
- | - **HOME Partition: | ||
- | - Lastly press " | ||
- | |||
- | Now your '' | ||
- | |||
- | < | ||
- | | ||
- | 0 nvme0n1 | ||
- | 1 nvme0n1p1 | ||
- | 2 nvme0n1p2 | ||
- | </ | ||
- | |||
- | |||
- | ===== Format and Mount Partitions ===== | ||
- | ---- | ||
- | Jetzt müssen wir noch die Partitionen die wir erstellt haben, richtig formatieren. | ||
- | |||
- | < | ||
- | mkfs.ext4 / | ||
- | mkfs.ext4 / | ||
- | </ | ||
- | |||
- | Dann müssen wir die formatierten Partitionen einbinden: | ||
- | < | ||
- | mount / | ||
- | mkdir / | ||
- | mount / | ||
- | </ | ||
- | |||
- | |||
- | ===== Install Base System ===== | ||
- | ---- | ||
- | |||
- | Installiere das Basis-System (openrc) sowie den Kernel (Linux) auf der Root-Partition und synchronisiere den Computer mit der Uhrzeit: | ||
- | < | ||
- | basestrap /mnt base base-devel openrc elogind-openrc linux linux-firmware && rc-service ntpd start | ||
- | </ | ||
- | |||
- | Use fstabgen to generate /etc/fstab, use -U for UUIDs as source identifiers: | ||
- | < | ||
- | |||
- | ===== Configure the base system ===== | ||
- | ---- | ||
- | To configure the system, chroot into your new Artix: | ||
- | < | ||
- | |||
- | Then, install grub and os-prober (for detecting other installed operating systems): | ||
- | |||
- | < | ||
- | pacman -S grub os-prober efibootmgr | ||
- | grub-install --target=x86_64-efi --efi-directory=/ | ||
- | grub-mkconfig -o / | ||
- | </ | ||
- | |||
- | Then, set the root passwd and add a regular user: | ||
- | < | ||
- | passwd | ||
- | useradd -m user <- add regular user | ||
- | passwd user | ||
- | </ | ||
- | |||
- | Lastly, you can reboot and enter into your new installation: | ||
- | < | ||
- | exit | ||
- | umount -R /mnt | ||
- | reboot | ||
- | </ | ||
- | |||
- | ===== Post-Installation Configuration ===== | ||
- | ---- | ||
- | You can now either configure your system manually yourself or install my auto-bootstrapping script called [[https:// | ||
- | < | ||
- | curl -LO marlonivo.xyz/ | ||
- | sh sharks.sh | ||
- | </ |