-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
176 lines (174 loc) · 4.91 KB
/
index.html
File metadata and controls
176 lines (174 loc) · 4.91 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, shrink-to-fit=no"
/>
<title>ALCI | Artix Linux Calamares Installer</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
/>
<link rel="stylesheet" href="assets/css/styles.css" />
</head>
<body>
<header class="nav-top">
<ul class="list-inline">
<li class="list-inline-item">
<a href="/">Home</a>
</li>
<li class="list-inline-item">
<a
href="https://github.com/artix-linux-calamares-installer"
target="_blank"
>GitHub</a
>
</li>
<li class="list-inline-item">
<a href="./docs/root">Docs</a>
</li>
<li class="list-inline-item">
<a
href="https://github.com/artix-linux-calamares-installer/alci-iso/releases"
target="_blank"
>Releases</a
>
</li>
</ul>
</header>
<section class="info-section">
<div class="container">
<div class="intro">
<img src="./assets/img/alci.png" alt="alci image" />
<h2 class="text-center">Artix Linux Calamares Installer</h2>
<p class="text-center">
Our goal is to put Calamares on the Artix Linux ISO(s)
and keep it as close as possible to vanilla Artix.
Basically, we provide a graphical installation tool for
Artix Linux. You can use any desktop you like!
</p>
</div>
</div>
</section>
<section class="flavours">
<div class="container">
<div class="intro">
<h2 class="text-center">Flavours</h2>
<p class="text-center">
After the installation, the graphical medium uninstalls
itself. You can intercept this process to push your own
configuration files. Here's a list of the flavours of
Artix Linux ISOs we support:
</p>
</div>
<div class="row justify-content-center flavours">
<div class="col-sm-6 col-md-5 col-lg-4 item">
<div class="box">
<h3 class="name">Runit</h3>
<p class="description">
runit is a suite of tools which provides an init
(PID 1) as well as daemontools-compatible
process supervision framework, along with
utilites which streamline creation and
maintenance of services.
</p>
<a
class="learn-more"
href="https://wiki.artixlinux.org/Main/Runit"
>Learn More</a
>
</div>
</div>
<div class="col-sm-6 col-md-5 col-lg-4 item">
<div class="box">
<h3 class="name">OpenRC</h3>
<p class="description">
OpenRC is a dependency-based init system that
initially maintained compatibility with
sysvinit. OpenRC was written by Gentoo
developers and it is designed to be used by
other distributions and BSD systems.
</p>
<a
class="learn-more"
href="https://wiki.artixlinux.org/Main/OpenRC"
>Learn More</a
>
</div>
</div>
<div class="col-sm-6 col-md-5 col-lg-4 item">
<div class="box">
<h3 class="name">S6</h3>
<p class="description">
s6 is a process supervision suite that also
provides tools for service management (s6-rc)
and system initialization/shutdown
(s6-linux-init).
</p>
<a
class="learn-more"
href="https://wiki.artixlinux.org/Main/S6"
>Learn More</a
>
</div>
</div>
<div class="col-sm-6 col-md-5 col-lg-4 item">
<div class="box">
<h3 class="name">Suite66</h3>
<p class="description">
66 is a collection of system tools built as a
wrapper around the s6 supervision suite and
s6-rc service manager.
</p>
<a
class="learn-more"
href="https://wiki.artixlinux.org/Main/Suite66"
>Learn More</a
>
</div>
</div>
<div class="col-sm-6 col-md-5 col-lg-4 item">
<div class="box">
<h3 class="name">Dinit</h3>
<p class="description">
Dinit is a service supervisor with dependency
support which can also act as the system "init"
program.
</p>
<a
class="learn-more"
href="https://wiki.artixlinux.org/Main/Dinit"
>Learn More</a
>
</div>
</div>
</div>
</div>
<footer class="footer">
<ul class="list-inline">
<li class="list-inline-item">
<a
href="https://github.com/artix-linux-calamares-installer"
>GitHub</a
>
</li>
<li class="list-inline-item">
<a href="./docs/root">Docs</a>
</li>
<li class="list-inline-item">
<a
href="https://github.com/artix-linux-calamares-installer/alci-iso/releases"
>Releases</a
>
</li>
<p class="bottom-text">
Artix Calamares Installer | Website by
<a href="https://github.com/rv178">rv178</a>
</p>
</ul>
</footer>
</section>
</body>
</html>