start:system:artix
Differences
This shows you the differences between two versions of the page.
start:system:artix [2025/05/24 09:23] – [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 doesn' | ||
- | * 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 ===== | ||
- | |||
- | At first you need to tap some keys to get into partition ordering. | ||
- | Boot up from your UEFI:Name of USB-Stick because **otherwise this guide wont work** for you. | ||
- | |||
- | After you booted into the live-artix ISO, 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. | ||
- | < | ||
- | loadkeys en ← fasterway to set CC | ||
- | fdisk / | ||
- | </ | ||
- | |||
- | **Delete Partitions: | ||
- | We need a new system, therefore press " | ||
- | |||
- | **Create Partitions: | ||
- | Then press " | ||
- | |||
- | For Partition 2/2 press " | ||
- | |||
- | 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.fat -F32 / | ||
- | mkfs.ext4 / | ||
- | </ | ||
- | |||
- | Dann müssen wir die formatierten Partitionen einbinden: | ||
- | < | ||
- | mount / | ||
- | mkdir -p / | ||
- | mount / | ||
- | </ | ||
- | |||
- | \\ | ||
- | ===== Install Artix Base System ===== | ||
- | |||
- | Install the base system !if you choosed rc install openrc, if you choosed runit install runit) as well as the linux firmware. | ||
- | < | ||
- | basestrap /mnt base base-devel openrc elogind-openrc linux linux-firmware | ||
- | </ | ||
- | |||
- | Use fstabgen to generate '' | ||
- | < | ||
- | |||
- | \\ | ||
- | ===== 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). Grub disables os-prober by default therefore edit the configuration file with nano. | ||
- | < | ||
- | pacman -S grub os-prober nano efibootmgr dhcpcd | ||
- | nano / | ||
- | </ | ||
- | |||
- | Und entferne das Kommentarzeichen (#): | ||
- | < | ||
- | GRUB_DISABLE_OS_PROBER=false | ||
- | </ | ||
- | |||
- | Install a bootloader (in our case grub) onto your Partition. | ||
- | < | ||
- | 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 ← set password for user | ||
- | </ | ||
- | |||
- | Lastly, you can reboot and enter into your new installation: | ||
- | < | ||
- | exit | ||
- | umount -R /mnt ← Plug off your USB-Stick now | ||
- | 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 sharx.sh | ||
- | </ |
start/system/artix.1748078604.txt.gz · Last modified: by marlonivo