blob: 44fc86eb1c64d882743b6dcbc094dad8d1e17307 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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>
|