This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| guide:artix_arch_install [2023-05-12 Fri 21:19] – created theorytoe | guide:artix_arch_install [2025-03-23 Sun 02:12] (current) – [Pre-steps] fix download link theorytoe | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ====== Artix/ | + | ====== Artix/ |
| First of all this is a good video guide:((The arch manual sucks really bad)) | First of all this is a good video guide:((The arch manual sucks really bad)) | ||
| https:// | https:// | ||
| + | |||
| + | Secondly this guide assumes you'll be installing runit as your init of choice, of course you don't have to follow that recommendation, | ||
| + | |||
| + | (Also this guide was last updated 2023-12-25 so beware if its currently a few years after this.) | ||
| ===== Pre-steps ===== | ===== Pre-steps ===== | ||
| For sake of completenes: | For sake of completenes: | ||
| - | * Grab a iso from [[https:// | + | * Grab a iso from [[https:// |
| - | * Falsh to a usb | + | * Flash to a usb |
| * Disable secure boot on the target machine (backup keys too) | * Disable secure boot on the target machine (backup keys too) | ||
| * Plugin & boot (live passwd is ' | * Plugin & boot (live passwd is ' | ||
| Line 39: | Line 43: | ||
| * ''/ | * ''/ | ||
| * ''/'' | * ''/'' | ||
| - | * '' | + | * '' |
| Now some systems //also// have 1 more more of the following partitions: | Now some systems //also// have 1 more more of the following partitions: | ||
| Line 156: | Line 160: | ||
| </ | </ | ||
| - | Now set the system clock to hardware | + | Now set the system clock to hardware. **NOTE:** If youre time is incorrect even after setting both |
| + | the timezone and the hwclock. Go into your BIOS and make sure your system clock is synced up to | ||
| + | **GMT**. If it is not, set it, as if its on anything else your clock will be wrong. | ||
| <code bash> | <code bash> | ||
| hwclock --systohc | hwclock --systohc | ||
| Line 221: | Line 227: | ||
| </ | </ | ||
| + | ===== Post-install ===== | ||
| + | Once you finish the main install, there may be a couple of other things that you want to do with your system. There are a couple of things that I do with all of my systems. | ||
| + | ==== Primary User ==== | ||
| + | You'll probably want to setup the primary user for the system, usually this is more than enough. | ||
| + | |||
| + | <code bash> | ||
| + | useradd -mU $username -s /bin/bash | ||
| + | # for sudo privs | ||
| + | usermod -aG wheel $username | ||
| + | </ | ||
| + | |||
| + | ==== Universe Repository ==== | ||
| + | Artix has some nice community-maintained packages in the upstream '' | ||
| + | |||
| + | < | ||
| + | [universe] | ||
| + | Server = https:// | ||
| + | Server = https:// | ||
| + | Server = https:// | ||
| + | Server = https:// | ||
| + | Server = https:// | ||
| + | Server = https:// | ||
| + | Server = https:// | ||
| + | </ | ||
| + | |||
| + | ==== Arch Repos ==== | ||
| + | You can setup artix to also pull from the arch '' | ||
| + | |||
| + | < | ||
| + | [extra] | ||
| + | Include = / | ||
| + | </ | ||