diff options
author | Zach van Rijn <me@zv.io> | 2021-11-13 12:00:05 -0600 |
---|---|---|
committer | Zach van Rijn <me@zv.io> | 2021-11-13 12:00:05 -0600 |
commit | c2b68004d416fa5b8d10f0c687f44f994b2b4ea0 (patch) | |
tree | 1ed60a907611de777328ef9757dfeaa0dda38b8d | |
parent | 267130c98bb50b8eff5d4e67b729a4ab46a78f1f (diff) | |
download | site-ng-c2b68004d416fa5b8d10f0c687f44f994b2b4ea0.tar.gz site-ng-c2b68004d416fa5b8d10f0c687f44f994b2b4ea0.tar.bz2 site-ng-c2b68004d416fa5b8d10f0c687f44f994b2b4ea0.tar.xz site-ng-c2b68004d416fa5b8d10f0c687f44f994b2b4ea0.zip |
Update FAQ section with some information from the old site.
-rw-r--r-- | src/faq/index.html | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/faq/index.html b/src/faq/index.html index f93245a..192c19f 100644 --- a/src/faq/index.html +++ b/src/faq/index.html @@ -45,6 +45,12 @@ __HEADER__ <a class="nav-link active" data-toggle="tab" href="#general">General</a> </li> <li class="nav-item"> + <a class="nav-link" data-toggle="tab" href="#software">Software</a> + </li> + <li class="nav-item"> + <a class="nav-link" data-toggle="tab" href="#technical">Technical</a> + </li> + <li class="nav-item"> <a class="nav-link" data-toggle="tab" href="#support">Support</a> </li> </ul><!-- end nav-pills --> @@ -59,11 +65,51 @@ __HEADER__ <p>Officially, no single individual. We're a group of like-minded hackers who want a better Linux distribution.<br />Historically, it was started by A. Wilcox and others around 2015 but has taken on several forms since then.</p> </div> </div> + <div class="tab-pane fade" id="software"> + <div> + <h6 class="font-weight-normal">Which libc does Adélie use?</h6> + <p>Adélie uses the musl standard C library.</p> + </div> + <div class="margin-top-30"> + <h6 class="font-weight-normal">What does your userland look like?</h6> + <p>We're currently offering a GNU Coreutils based userland by default.</p> + </div> + <div class="margin-top-30"> + <h6 class="font-weight-normal">Which package manager does Adélie use?</h6> + <p>The Adélie Linux system uses the APK package manager. APK was chosen because it is very fast, and its dependency resolver is one of the more performant and efficient package managers available for Linux.</p> + </div> + <div class="margin-top-30"> + <h6 class="font-weight-normal">Which init system and process supervisor does Adélie use?</h6> + <p>Adélie uses OpenRC and s6 for these purposes.</p> + </div> + </div> + <div class="tab-pane fade" id="technical"> + <div> + <h6 class="font-weight-normal">Which computer architectures do you support?</h6> + <p>Right now we're focused on 32- and 64- bit versions of ARM, POWER, and x86.<br />We're hoping to add SPARC support soon.</p> + </div> + <div class="margin-top-30"> + <h6 class="font-weight-normal">How do you test your software?</h6> + <p>We have over a dozen physical servers and vintage computers covering all of our supported architectures (and more).<br />Our developers use Adélie to develop Adélie on both servers and desktops.</p> + </div> + <div class="margin-top-30"> + <h6 class="font-weight-normal">How do I install my own software?</h6> + <p>If you are building it from source or downloading it, you should take care to install it to <code>/usr/local/</code> or your <code>HOME</code> directory so as not to interfere with the normal operation of your system.</p> + </div> + </div> <div class="tab-pane fade" id="support"> <div> + <h6 class="font-weight-normal">Do you offer free support?</h6> + <p>Our developers and other tech-savvy members of our community, like yourself, spend time in IRC and on mailing lists.<br />Please visit our contact page for more information.</p> + </div> + <div class="margin-top-30"> <h6 class="font-weight-normal">Do you offer paid support?</h6> <p>What we call "Enterprise Support" is handled by a separate organization and we will gladly refer your inquiries. Depending on the nature of such an inquiry, you may be directed to an individual software consultant who acts in their own capacity.</p> </div> + <div class="margin-top-30"> + <h6 class="font-weight-normal">I've found a bug, what should I do?</h6> + <p>The most important thing to do is bring it to our attention. We can help you find a temporary workaround.<br />If you want to contribute directly, please file a bug report on our issue tracker.</p> + </div> </div> </div><!-- end tab-content --> </div> |