diff options
Diffstat (limited to 'articles/2025/Enable-Arch-Extra-repository-in-Artix.html')
| -rwxr-xr-x | articles/2025/Enable-Arch-Extra-repository-in-Artix.html | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/articles/2025/Enable-Arch-Extra-repository-in-Artix.html b/articles/2025/Enable-Arch-Extra-repository-in-Artix.html new file mode 100755 index 0000000..44fc86e --- /dev/null +++ b/articles/2025/Enable-Arch-Extra-repository-in-Artix.html @@ -0,0 +1,49 @@ +<!doctype html> +<html lang="EN"> + <head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <link rel="stylesheet" href="/style.css"> + <title>Enable Arch Extra repository in Artix</title> + </head> + <body> + <header> + <h1>Bloggings</h1> + <a href="/index.php">Back</a> + + </header> + +<main> +<article> +<h2>Enable Arch Extra repository in Artix</h2> +<h3>2025-06-20</h3> +<h4>Extending Artix package library</h4> +<p>Artix Linux is mostly Arch Linux, minus systemd of course, and plus packages that +replace it's absence.</p> +<p>In order to access packages that may not be available via Artix, it's possible to add +the Arch Linux Extra Mirror.</p> + +<code>pacman -S artix-archlinux-support +wget https://archlinux.org/mirrorlist/all/ -O /etc/pacman.d/mirrorlist-arch +</code> + +<p>Edit /etc/pacman.conf and activate the mirror.</p> + +<code>[extra] +Include = /etc/pacman.d/mirrorlist-arch</code> + +<p>Populate the Arch Linux keyring and synchronize the repository</p> + +<code>pacman-key --populate archlinux +pacman -Syu +</code> + </article> +</main> +<footer> + + <p> </p> + + <p>ยง</p> + </footer> +</body> +</html> |
