everest-web/about.html

79 lines
3.8 KiB
HTML
Raw Normal View History

2022-06-21 13:49:11 -04:00
<!DOCTYPE html>
<html>
<head>
2023-05-01 10:42:27 -04:00
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Everest Linux - About</title>
2023-09-29 09:18:06 -04:00
<link type="text/css" rel="stylesheet" href="css/nord.css"/>
2023-05-01 10:42:27 -04:00
<link rel="icon" type="image/x-icon" href="img/favicon.svg"/>
2022-06-21 13:49:11 -04:00
</head>
<body>
2023-01-26 17:27:05 -05:00
<!-- Navbar -->
<div class="sidenav">
2023-09-29 09:18:06 -04:00
<img src="img/everest-nord.svg" alt="everest-logo">
2023-01-26 17:27:05 -05:00
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="install.html">Install</a>
2023-10-13 12:59:24 -04:00
<a href="packages.html">Packages</a>
2023-01-26 17:27:05 -05:00
<a href="download.html">Downloads</a>
2023-04-04 13:36:31 -04:00
<a href="docs/home.html">Docs</a>
2023-03-31 11:46:59 -04:00
<a href="errata.html">Errata</a>
2023-10-13 12:59:24 -04:00
<a href="https://git.everestlinux.org">Git ↗</a>
2023-01-26 17:27:05 -05:00
</div>
<!-- Rest of page -->
2023-10-19 11:59:54 -04:00
<div class="hero-image">
2023-10-19 12:39:56 -04:00
<div class="hero-text">
<h1>About</h1>
</div>
2023-10-19 11:59:54 -04:00
</div>
2023-01-26 17:27:05 -05:00
<div class="main">
<h2>About Everest</h2>
2023-03-31 11:46:59 -04:00
<p>Everest Linux is a source based Linux meta-distribution, with a focus on simplicity and flexibility.</p>
2023-01-26 17:27:05 -05:00
<h2>History</h2>
2023-03-31 11:46:59 -04:00
<p>2021 - The idea of a packaging system that combined the simplicity of binary based packaging with the power of source based packaging was proposed.</p>
<p>Early 2022 - Early prototypes of Glacier were created. These versions came with no multi-repository support, caching, or logging of any kind.</p>
<p>Mid 2022 - Glacier v1 releases. This was the first stable release of Glacier.</p>
<p>Early June 2022 - Glacier v2 is released.</p>
2023-01-26 17:27:05 -05:00
<p>Late June 2022 - everestlinux.org is registered.</p>
2023-03-31 11:46:59 -04:00
<p>September 2022 - Different ways of bootstrapping a base system are tested by the development team.</p>
2023-01-26 17:27:05 -05:00
<p>October 2022 - Glacier v3 is released.</p>
<p>December 2022 - System image builds done by the development team.</p>
2024-07-12 12:49:21 -04:00
<p>February 2023 - Work on Glacier v4 is begun, website overhaul.</p>
<p>April 2023 - ecrypy, pm, and nc released.</p>
<p>December 2023 - Glacier C rewrite announced</p>
2023-01-26 17:27:05 -05:00
<h2>Design Principles</h2>
2023-03-31 11:46:59 -04:00
<p>Our design principles heavily influence and guide development. You may notice we share many of these with Arch.</p>
2023-01-26 17:27:05 -05:00
<strong>Simplicity</strong>
2023-10-13 14:10:27 -04:00
<p>We follow the UNIX philosphy when possible. Programs should do one thing, and do it right. Our packages have almost zero modifications from upstream. The base system contains only what you need to start building your system. The base Everest system also weighs in at around 100 MB</p>
2023-01-26 17:27:05 -05:00
<strong>Flexibility</strong>
2023-03-31 11:46:59 -04:00
<p>Everest is designed with flexibility in mind. Any modification can be achieved if the user has enough knowledge. For example, it is possible to replace Busybox with sbase, or use runit as your init system, all without breakage.</p>
2023-01-26 17:27:05 -05:00
<strong>Functionality versus Ideology</strong>
2023-10-13 14:10:27 -04:00
<p>The developers of Everest are strong advocates of free software, but understand that it cannot be implemented 100% of the time, such as in the form of drivers. We also understand that some users may prefer proprietary software over libre counterparts. We take no steps to prevent proprietary software in our package database, only requiring it to be licensed as such. This is a very different approach from heavily ideological distributions, some of which remove support for certain programs on a purely ideological basis.</p>
2023-01-26 17:27:05 -05:00
<strong>User Centrality</strong>
2023-03-31 11:46:59 -04:00
<p>We believe that instead of trying to make Everest easy to use out-of-the-box, we should instead focus on improving functionality for experienced users.</p>
<h2>Developers</h2>
<table>
<tr>
<th>Name</th>
<th>Email</th>
<th>Role(s)</th>
</tr>
<tr>
<td>Liam Waldron (lw-everestlinux)</td>
<td>liamwaldron@everestlinux.org</td>
<td>Head Developer</td>
</tr>
2023-10-27 09:57:02 -04:00
<tr>
<td>Grayson Ward (arco-everestlinux)</td>
<td>N/A</td>
<td>Developer</td>
</tr>
</table>
2023-01-26 17:27:05 -05:00
</div>
2023-03-31 11:46:59 -04:00
<footer>
2024-02-01 08:48:40 -05:00
<p>Copyright (C) 2021-2024 Everest Linux</p>
2023-03-31 11:46:59 -04:00
<p>Linux (R) is a registered trademark of Linus Torvalds.</p>
<p>Everest Linux is provided AS IS, WITHOUT WARRANTY.</p>
</footer>