-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
109 lines (90 loc) · 3.37 KB
/
index.html
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
<html>
<head>
<link rel="Stylesheet" href="extra.css" />
<link rel="Stylesheet" href="main.css" />
</head>
<body>
<div class="main">
<!--header begin--><div class="header" >
<table class="header" >
<tr>
<th>
<img src="sulin-logo.svg" ></th>
<th>
<H2>Sulin Project</H2></th>
</tr>
</table>
<nav class="navbar" >
<ul>
<li><a href="index.html" class="current" >
Home
</a>
</li>
<li><a href="download.html" >
Download
</a>
</li>
<li><a href="document.html" >
Documents
</a>
</li>
<li><a href="join.html" >
Community
</a>
</li>
<li><a href="gallery.html" >
Gallery
</a>
</li>
</ul>
</nav>
</div>
<!--header end-->
<!--content begin--><div class="content" >
<div class="section" >
<article>
<H2>What is SulinOS ?</H2><p>
SulinOS project is an <b>independent</b> base linux distro project.
Our main purpose in creating SulinOS is to create an rolling release operating system that <b><a href="https://nosystemd.org" >does not use systemd</a></b>.
It uses two different kernels, <a href="https://www.kernel.org/" >Linux kernel</a> and <a href="http://www.fsfla.org/ikiwiki/selibre/linux-libre/" >Libre kernel</a>.
In order to continue in accordance with the gnu philosophy <a href="https://www.gnu.org/software/libc/" >glibc</a> used as libc library.
SulinOS aims to create a strong substructure named <b>indispensable</b> which is a kind of minimal system.
Thanks to this infrastructure, we have created an easy-to-shape distro. It can be used on desktops, servers and embedded devices.
</p>
<p>
SulinOS uses its own toolset. It uses it's own package manager called <b><a href="https://gitlab.com/sulinos/devel/inary" >inary</a></b>.
SulinOS uses openrc as service manager. Also SulinOS has <b><a href="https://gitlab.com/sulinos/devel/force-elogind" >force-elogind</a></b>
so you may compile systemd related packages without systemd.SulinOS has <b><a href="https://gitlab.com/sulinos/devel/libselinux-dummy" >dummy-selinux</a></b> software.
You can run selinux dependent packages with dummy-selinux. (dummy-selinux is not preinstalled)
</p>
<p>
We continue to develop with inspiration from the legacy <b><a href="https://pardusproject.org/" >Pardus2011</a></b> project in the past.
</p>
<H2>Why SulinOS ?</H2><p>
SulinOS faster than standard distributions.
For example, every package was compiled without selinux or apparmor.
Also the kernel is configured for better security, without compromise.
SulinOS never use sudo (You can use 'su -c command' inside sudo).
SulinOS is oriented towards advanced Linux users, who know what they're doing.
</p>
<p>
Sulinos distribution is free software and the package manager gives you no way 3. the party doesn't force you to install packages.
packages generally compiled without any patches or customizes.
SulinOS provide pure GNU/Linux experience like <a href="http://linuxfromscratch.org/lfs/" >linuxfromscratch</a>.
As a difference between LFS, SulinOS has multilib support is also provided under 64bit called emul32.
</p>
</article>
</div>
</div>
<!--content end-->
<!--footer begin--><footer>
<center>
<H4>© 2016 - 2021 SulinOS Project</H4>
</center>
<center>
The software used in this project is licensed with GPLv2 GPLv3 LGPLv2 LGPLv3 AGPLv3. Documents are licensed with FDL. <br> The website is under MIT license. <a href="https://gitlab.com/sulincix/sitemaker">Site builder</a> is under WTFPL.
</center>
</footer>
<!--footer end-->
</div></body>
</html>