Document not found (404)
165 |This URL is invalid, sorry. Please use the navigation bar or search to continue.
166 | 167 |├── .gitattributes ├── book ├── .nojekyll ├── favicon.png ├── FontAwesome │ └── fonts │ │ ├── FontAwesome.ttf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 ├── fonts │ ├── open-sans-v17-all-charsets-300.woff2 │ ├── open-sans-v17-all-charsets-600.woff2 │ ├── open-sans-v17-all-charsets-700.woff2 │ ├── open-sans-v17-all-charsets-800.woff2 │ ├── open-sans-v17-all-charsets-italic.woff2 │ ├── open-sans-v17-all-charsets-regular.woff2 │ ├── open-sans-v17-all-charsets-300italic.woff2 │ ├── open-sans-v17-all-charsets-600italic.woff2 │ ├── open-sans-v17-all-charsets-700italic.woff2 │ ├── open-sans-v17-all-charsets-800italic.woff2 │ ├── source-code-pro-v11-all-charsets-500.woff2 │ ├── fonts.css │ ├── SOURCE-CODE-PRO-LICENSE.txt │ └── OPEN-SANS-LICENSE.txt ├── css │ ├── print.css │ ├── general.css │ ├── variables.css │ └── chrome.css ├── ayu-highlight.css ├── highlight.css ├── favicon.svg ├── tomorrow-night.css ├── clipboard.min.js ├── 404.html ├── contribute.html ├── arch-based-projects.html ├── arch-linux-installers.html ├── linux.html ├── index.html ├── introduction.html ├── arch-based-distros.html └── pacman-based-linux-distros.html ├── book.toml ├── .github ├── FUNDING.yml └── workflows │ └── mdbook.yml ├── src ├── arch-based-projects.md ├── linux.md ├── arch-linux-installers.md ├── pacman-based-linux-distros.md ├── arch-based-distros.md ├── not-linux.md ├── search-and-download.md ├── aur-helpers.md ├── search-and-build.md ├── other-projects.md ├── maintenance.md ├── contribute.md ├── introduction.md ├── inactive-projects.md ├── other.md ├── pacman-wrappers.md ├── systemd-free-arch-based-distros.md ├── SUMMARY.md ├── graphical.md ├── specific-purpose.md └── desktop.md ├── tests └── link_checker.pl ├── contributing.md ├── code-of-conduct.md ├── .all-contributorsrc └── license /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | readme.md merge=union 3 | -------------------------------------------------------------------------------- /book/.nojekyll: -------------------------------------------------------------------------------- 1 | This file makes sure that Github Pages doesn't process mdBook's output. -------------------------------------------------------------------------------- /book/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaFoss/Awesome-Arch/HEAD/book/favicon.png -------------------------------------------------------------------------------- /book.toml: -------------------------------------------------------------------------------- 1 | [book] 2 | authors = ["Panda Foss"] 3 | language = "en" 4 | multilingual = false 5 | src = "src" 6 | title = "Awesome Arch" 7 | -------------------------------------------------------------------------------- /book/FontAwesome/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaFoss/Awesome-Arch/HEAD/book/FontAwesome/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | ko_fi: pandafoss 4 | custom: ['https://cafecito.app/pandafoss'] 5 | -------------------------------------------------------------------------------- /book/FontAwesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaFoss/Awesome-Arch/HEAD/book/FontAwesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /book/FontAwesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaFoss/Awesome-Arch/HEAD/book/FontAwesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /book/FontAwesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaFoss/Awesome-Arch/HEAD/book/FontAwesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /book/fonts/open-sans-v17-all-charsets-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaFoss/Awesome-Arch/HEAD/book/fonts/open-sans-v17-all-charsets-300.woff2 -------------------------------------------------------------------------------- /book/fonts/open-sans-v17-all-charsets-600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaFoss/Awesome-Arch/HEAD/book/fonts/open-sans-v17-all-charsets-600.woff2 -------------------------------------------------------------------------------- /book/fonts/open-sans-v17-all-charsets-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaFoss/Awesome-Arch/HEAD/book/fonts/open-sans-v17-all-charsets-700.woff2 -------------------------------------------------------------------------------- /book/fonts/open-sans-v17-all-charsets-800.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaFoss/Awesome-Arch/HEAD/book/fonts/open-sans-v17-all-charsets-800.woff2 -------------------------------------------------------------------------------- /book/FontAwesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaFoss/Awesome-Arch/HEAD/book/FontAwesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /book/fonts/open-sans-v17-all-charsets-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaFoss/Awesome-Arch/HEAD/book/fonts/open-sans-v17-all-charsets-italic.woff2 -------------------------------------------------------------------------------- /book/fonts/open-sans-v17-all-charsets-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaFoss/Awesome-Arch/HEAD/book/fonts/open-sans-v17-all-charsets-regular.woff2 -------------------------------------------------------------------------------- /book/fonts/open-sans-v17-all-charsets-300italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaFoss/Awesome-Arch/HEAD/book/fonts/open-sans-v17-all-charsets-300italic.woff2 -------------------------------------------------------------------------------- /book/fonts/open-sans-v17-all-charsets-600italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaFoss/Awesome-Arch/HEAD/book/fonts/open-sans-v17-all-charsets-600italic.woff2 -------------------------------------------------------------------------------- /book/fonts/open-sans-v17-all-charsets-700italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaFoss/Awesome-Arch/HEAD/book/fonts/open-sans-v17-all-charsets-700italic.woff2 -------------------------------------------------------------------------------- /book/fonts/open-sans-v17-all-charsets-800italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaFoss/Awesome-Arch/HEAD/book/fonts/open-sans-v17-all-charsets-800italic.woff2 -------------------------------------------------------------------------------- /book/fonts/source-code-pro-v11-all-charsets-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaFoss/Awesome-Arch/HEAD/book/fonts/source-code-pro-v11-all-charsets-500.woff2 -------------------------------------------------------------------------------- /src/arch-based-projects.md: -------------------------------------------------------------------------------- 1 | # Arch-based projects 2 | 3 | Within the ecosystem of Arch-based projects, we can find some that use the Linux kernel, and others that do not, expanding even more the options available to Arch lovers. -------------------------------------------------------------------------------- /src/linux.md: -------------------------------------------------------------------------------- 1 | # Linux 2 | 3 | > Linux distributions strongly inspired by Arch Linux. 4 | 5 | - [Arch Linux 32](https://www.archlinux32.org/) - The community maintained continuation of 32-bit support for Arch Linux. 6 | - [Arch Linux ARM](https://archlinuxarm.org/) - A distribution of Linux for ARM computers. -------------------------------------------------------------------------------- /src/arch-linux-installers.md: -------------------------------------------------------------------------------- 1 | # Arch Linux Installers 2 | 3 | > Installers created specifically to facilitate the installation of Linux Arch. 4 | 5 | - [Archfi](https://github.com/MatMoul/archfi) - Just a simple bash script wizard to install Arch Linux after you have booted on the official Arch Linux install media. 6 | -------------------------------------------------------------------------------- /src/pacman-based-linux-distros.md: -------------------------------------------------------------------------------- 1 | # Pacman-based Linux distros 2 | 3 | > Linux distributions that use `pacman` as a package manager. 4 | 5 | - [Chakra GNU/Linux](https://www.chakralinux.org/) - A user-friendly and powerful distribution and live CD originally forked from Arch Linux. 6 | - [KaOS](https://kaosx.us/) - KaOS is an independent distribution focused on Qt and KDE. -------------------------------------------------------------------------------- /src/arch-based-distros.md: -------------------------------------------------------------------------------- 1 | # Arch-based distros 2 | 3 | Simplicity is one of the great features of Arch Linux, which has led the community to use it for their own distributions. In this section we cover all of these through two categories: those general purpose distros (the ones we usually install on our home computers), and those others that were designed with a particular purpose in mind, be it focused on security, data rescue, servers among others. -------------------------------------------------------------------------------- /src/not-linux.md: -------------------------------------------------------------------------------- 1 | # Not Linux 2 | 3 | > Non-Linux projects based on Arch Linux. 4 | 5 | - [PacBSD](https://github.com/pacbsd) - A lightweight and flexible BSD distribution that provides a base system for use of `pacman` package manager. 6 | - [Arch Hurd](https://archhurd.org/) - A derivative work of Arch Linux porting it to the GNU Hurd system with packages optimised for the i686 architecture. 7 | - [ArchWSL](https://git.io/archwsl) - ArchLinux as a WSL Instance. 8 | -------------------------------------------------------------------------------- /src/search-and-download.md: -------------------------------------------------------------------------------- 1 | # Search and download 2 | 3 | - [Auracle](https://github.com/falconindy/auracle) (C++) - A flexible command line client for Arch Linux's User Repository. 4 | - [pbget](https://xyne.archlinux.ca/projects/pbget/) (Python) - Retrieve PKGBUILDs and local source files from Git, ABS and the AUR for makepkg. 5 | - [repoctl](https://github.com/cassava/repoctl) (Go) - Make it easy to manage your local Arch Linux repository. 6 | - [yaah](https://projects.metalgamer.eu/yaah) (Bash) - A helper for the Archlinux User Repository (AUR). -------------------------------------------------------------------------------- /src/aur-helpers.md: -------------------------------------------------------------------------------- 1 | # AUR Helpers 2 | 3 | From Arch Wiki: 4 | 5 | > AUR helpers automate usage of the [Arch User Repository](https://aur.archlinux.org/). In particular, they may automate the following tasks: 6 | > 7 | > - searching for packages published on the AUR; 8 | > - resolving of dependencies between AUR packages; 9 | > - retrieve and build AUR packages; 10 | > - retrieve web content, such as user comments; 11 | > - submission of AUR packages. 12 | 13 | This section tries to cover all these helpers, divided according to their functionality. -------------------------------------------------------------------------------- /.github/workflows/mdbook.yml: -------------------------------------------------------------------------------- 1 | name: mdbook 2 | 3 | on: 4 | push: 5 | branches: 6 | - master 7 | 8 | jobs: 9 | deploy: 10 | runs-on: ubuntu-20.04 11 | steps: 12 | - uses: actions/checkout@v2 13 | 14 | - name: Setup mdBook 15 | uses: peaceiris/actions-mdbook@v1 16 | with: 17 | mdbook-version: 'latest' 18 | 19 | - run: mdbook build 20 | 21 | - name: Deploy 22 | uses: peaceiris/actions-gh-pages@v3 23 | with: 24 | github_token: ${{ secrets.GITHUB_TOKEN }} 25 | publish_dir: ./book 26 | -------------------------------------------------------------------------------- /src/search-and-build.md: -------------------------------------------------------------------------------- 1 | # Search and build 2 | 3 | - [Aurutils](https://github.com/AladW/aurutils) (Bash) - Helper tools for the AUR. 4 | - [Bauerbill](https://xyne.archlinux.ca/projects/bauerbill/) (Python) - An extension of Powerpill with AUR and ABS support. 5 | - [PKGBUILDer](https://github.com/Kwpolska/pkgbuilder) (Python) - An AUR helper (and library) in Python 3. 6 | - [repofish](https://git.seppia.net/repofish.git) (Bash) - Simple shell script used to manage a local archlinux repository. 7 | - [RUA](https://github.com/vn971/rua) (Rust) - Build tool for Arch Linux providing control, review and jailed build options. -------------------------------------------------------------------------------- /src/other-projects.md: -------------------------------------------------------------------------------- 1 | # Other projects 2 | 3 | > Projects linked to or inspired by Arch Linux that do not belong to any previous category. 4 | 5 | - [Termux Arch](https://termuxarch.github.io/TermuxArch/) - Run Arch Linux ARM on your mobile phone with Termux. 6 | - [archlinux/base](https://hub.docker.com/r/archlinux/base/) - A docker image based on Arch Linux. 7 | - [Arch Linux on EC2](https://www.uplinklabs.net/projects/arch-linux-on-ec2/) - Amazon EC2 AMIs based on Arch Linux 8 | - [JuNest](https://github.com/fsquillace/junest) - A lightweight Arch Linux-based distro that runs, without root privileges, upon any Linux distro. 9 | -------------------------------------------------------------------------------- /src/maintenance.md: -------------------------------------------------------------------------------- 1 | # Mainteinance 2 | 3 | - [aur-out-of-date](https://github.com/simon04/aur-out-of-date) - Determines out-of-date AUR packages w.r.t. upstream version. 4 | - [aurpublish](https://github.com/eli-schwartz/aurpublish) - PKGBUILD management framework for the Arch User Repository. 5 | - [devtools](https://git.archlinux.org/devtools.git/) - Tools for the Arch Linux distribution for building and maintaining official repository packages. 6 | - [pkgbuild-watch](http://kmkeen.com/pkgbuild-watch/) - Alerts you to upstream activity. 7 | - [pkgoutofdate](https://github.com/anatol/pkgoutofdate) - Checks whether Arch packages are out-of-date. -------------------------------------------------------------------------------- /src/contribute.md: -------------------------------------------------------------------------------- 1 | # Contribute 2 | 3 | Contributions welcome! Read the [contribution guidelines](contributing.md) first. 4 | 5 | You can also contribute to the maintenance of the list by making a small donation (psst, buy me a coffee... ☕️ ): 6 | 7 | [](https://liberapay.com/PandaFoss/donate) 8 | 9 | I need your support! ❤️ 10 | 11 | # License 12 | 13 | [](https://creativecommons.org/publicdomain/zero/1.0) 14 | 15 | To the extent possible under law, Panda Foss has waived all copyright and related or neighboring rights to this work. 16 | -------------------------------------------------------------------------------- /src/introduction.md: -------------------------------------------------------------------------------- 1 | # Awesome Arch [](https://github.com/sindresorhus/awesome) 2 | 3 | > An awesome list for an awesome project.
4 | 5 | [
](https://www.archlinux.org/)
6 |
7 | [Arch Linux](https://www.archlinux.org/) is an independently developed, x86-64 general purpose GNU/Linux distribution versatile enough to suit any role. Development focuses on simplicity, minimalism, and code elegance. Arch is installed as a minimal base system, configured by the user upon which their own ideal environment is assembled by installing only what is required or desired for their unique purposes.
--------------------------------------------------------------------------------
/src/inactive-projects.md:
--------------------------------------------------------------------------------
1 | # Inactive projects
2 |
3 | > Projects that were part of the listing but were discontinued or did not receive updates for a long time.
4 |
5 | - **Arch XFerience** - A modern OS based on Arch Linux, built for day-to-day operations with tons of packages & features. (inactive)
6 | - **Chakra GNU/Linux** - A user-friendly and powerful distribution and live CD originally forked from Arch Linux. ([discontinued](https://twitter.com/chakralinux/status/1475111596640727045))
7 | - **Archphile** - _(Raspberry Pi/ARM/Audio)_ - Yet another linux audio distribution for embedded boards. (inactive)
8 | - **Anarchy** - A simple and intuitive Arch Linux installer. ([discontinued](https://gitlab.com/anarchyinstaller/installer#deprecated-project))
9 |
--------------------------------------------------------------------------------
/src/other.md:
--------------------------------------------------------------------------------
1 | # Other
2 |
3 | - [arch-audit](https://gitlab.com/ilpianista/arch-audit) - A utility like pkg-audit based on Arch Security Team data.
4 | - [aur-talk](https://github.com/GermainZ/aur-talk) - A script to fetch and display AUR package comments.
5 | - [aurvote-utils](https://github.com/jadenPete/aurvote-utils) - A set of utilities for managing AUR votes.
6 | - [haskell-aur](https://hackage.haskell.org/package/aur) - Haskell library for accessing Aurweb RPC interface.
7 | - [package-query](https://github.com/archlinuxfr/package-query) - Tool for querying `libalpm` and the AUR.
8 | - [python3-aur](https://xyne.archlinux.ca/projects/python3-aur) - AUR-related modules and helper utilities (aurploader, aurquery, aurtomatic).
9 | - [raur](https://gitlab.com/davidbittner/raur) - Rust library for accessing Aurweb RPC interface.
10 |
--------------------------------------------------------------------------------
/src/pacman-wrappers.md:
--------------------------------------------------------------------------------
1 | # Pacman wrappers
2 |
3 | - [Aura](https://github.com/fosskers/aura) (Haskell) - A secure, multilingual package manager for Arch Linux and the AUR.
4 | - [Pacaur](https://github.com/E5ten/pacaur) (Bash) - An AUR helper that minimizes user interaction.
5 | - [Pakku](https://github.com/kitsunyan/pakku) (Nim) - `pacman` wrapper with AUR support.
6 | - [Paru](https://github.com/Morganamilo/paru) (Rust) - AUR helper with all needed modern wrapper features, created by a former developer of yay.
7 | - [pikaur](https://github.com/actionless/pikaur) (Python) - AUR helper with minimal dependencies. Review PKGBUILDs all in once, next build them all without user interaction.
8 | - [Trizen](https://github.com/trizen/trizen) (Perl) - Lightweight AUR Package Manager.
9 | - [Yay](https://github.com/Jguer/yay) (Go) - Yet another Yogurt, an AUR Helper written in Go.
--------------------------------------------------------------------------------
/src/systemd-free-arch-based-distros.md:
--------------------------------------------------------------------------------
1 | # SystemD-free Arch-based distros
2 |
3 | > Linux distributions based on Arch Linux that implement alternative inits to SystemD.
4 |
5 | - [Obarun](https://web.obarun.org/) - An Arch Linux based distribution featuring the S6 init software in place of systemd.
6 | - [Artix Linux](https://artixlinux.org/) - A fork (or continuation as an autonomous project) of the Arch-OpenRC and Manjaro-OpenRC projects.
7 | - [Hyperbola GNU/Linux-libre](https://www.hyperbola.info/) - A community driven effort to provide a fully free (as in freedom) operating system that is stable, secure, simple, lightweight that tries to Keep It Simple Stupid (KISS) with Long Term Support (LTS).
8 | - [Parabola GNU/Linux-libre](https://www.parabola.nu/) - An unofficial "libre" variant of Arch Linux.
9 | - [Alfheim Linux](https://alfheimlinux.wixsite.com/alfheimlinux) - Systemd free Arch based Linux.
--------------------------------------------------------------------------------
/src/SUMMARY.md:
--------------------------------------------------------------------------------
1 | ./ Summary
2 |
3 | [Introduction](./introduction.md)
4 | - [Arch-based projects](./arch-based-projects.md)
5 | - [Linux](./linux.md)
6 | - [Not Linux](./not-linux.md)
7 | - [Arch-based distros](./arch-based-distros.md)
8 | - [Desktop](./desktop.md)
9 | - [Specific purpose](./specific-purpose.md)
10 | - [Pacman-based Linux distros](./pacman-based-linux-distros.md)
11 | - [SystemD-free Arch-based distros](./systemd-free-arch-based-distros.md)
12 | - [Arch Linux Installers](./arch-linux-installers.md)
13 | - [AUR Helpers](./aur-helpers.md)
14 | - [Search and download](./search-and-download.md)
15 | - [Search and build](./search-and-build.md)
16 | - [Pacman wrappers](./pacman-wrappers.md)
17 | - [Graphical](./graphical.md)
18 | - [Maintenance](./maintenance.md)
19 | - [Other](./other.md)
20 | - [Other projects](./other-projects.md)
21 | - [Inactive projects](./inactive-projects.md)
22 |
23 | [Contribute](./contribute.md)
24 |
--------------------------------------------------------------------------------
/book/css/print.css:
--------------------------------------------------------------------------------
1 |
2 | #sidebar,
3 | #menu-bar,
4 | .nav-chapters,
5 | .mobile-nav-chapters {
6 | display: none;
7 | }
8 |
9 | #page-wrapper.page-wrapper {
10 | transform: none;
11 | margin-left: 0px;
12 | overflow-y: initial;
13 | }
14 |
15 | #content {
16 | max-width: none;
17 | margin: 0;
18 | padding: 0;
19 | }
20 |
21 | .page {
22 | overflow-y: initial;
23 | }
24 |
25 | code {
26 | background-color: #666666;
27 | border-radius: 5px;
28 |
29 | /* Force background to be printed in Chrome */
30 | -webkit-print-color-adjust: exact;
31 | }
32 |
33 | pre > .buttons {
34 | z-index: 2;
35 | }
36 |
37 | a, a:visited, a:active, a:hover {
38 | color: #4183c4;
39 | text-decoration: none;
40 | }
41 |
42 | h1, h2, h3, h4, h5, h6 {
43 | page-break-inside: avoid;
44 | page-break-after: avoid;
45 | }
46 |
47 | pre, code {
48 | page-break-inside: avoid;
49 | white-space: pre-wrap;
50 | }
51 |
52 | .fa {
53 | display: none !important;
54 | }
55 |
--------------------------------------------------------------------------------
/src/graphical.md:
--------------------------------------------------------------------------------
1 | # Graphical
2 |
3 | - [Argon](https://github.com/14mRh4X0r/arch-argon) (Python | GTK3) - lightweight GUI package manager for Arch Linux.
4 | - [Cylon](https://github.com/gavinlyonsrepo/cylon) (Bash | TUI) - A CLI TUI menu driven bash shell script supporting updates, maintenance, backups and system checks for an Arch based Linux distro.
5 | - [Pamac](https://gitlab.manjaro.org/applications/pamac) (Vala | GTK3) - Graphical Package Manager for Manjaro Linux with Alpm, AUR, Appstream, Flatpak and Snap support.
6 | - [Pakku GUI](https://gitlab.com/mrvik/pakku-gui) (Python | GTK3) - Basic GTK interface to (install|remove|upgrade) packages with `pakku`.
7 | - [PkgBrowser](https://osdn.net/projects/pkgbrowser) (Python | Qt5) - A utility for browsing `pacman` databases and the AUR.
8 | - [Octopi](https://tintaescura.com/projects/octopi) (C++ | Qt5) - A graphical user interface for the Arch Linux package management tool `pacman`.
9 | - [Yup](https://github.com/ericm/yup) (Go | TUI) - Arch Linux AUR Helper with ncurses functionality and better searching and sorting.
10 |
--------------------------------------------------------------------------------
/tests/link_checker.pl:
--------------------------------------------------------------------------------
1 | #!/usr/bin/perl
2 | ################################################################################
3 | # Author: Max Ferrer (PandaFoss) This URL is invalid, sorry. Please use the navigation bar or search to continue.
166 | 167 |Contributions welcome! Read the contribution guidelines first.
164 |You can also contribute to the maintenance of the list by making a small donation (psst, buy me a coffee... ☕️ ):
165 | 166 |I need your support! ❤️
167 |To the extent possible under law, Panda Foss has waived all copyright and related or neighboring rights to this work.
170 | 171 |Within the ecosystem of Arch-based projects, we can find some that use the Linux kernel, and others that do not, expanding even more the options available to Arch lovers.
164 | 165 |164 |166 |Installers created specifically to facilitate the installation of Linux Arch.
165 |
164 |166 |Linux distributions strongly inspired by Arch Linux.
165 |
164 |166 | 167 |An awesome list for an awesome project.
165 |
Arch Linux is an independently developed, x86-64 general purpose GNU/Linux distribution versatile enough to suit any role. Development focuses on simplicity, minimalism, and code elegance. Arch is installed as a minimal base system, configured by the user upon which their own ideal environment is assembled by installing only what is required or desired for their unique purposes.
168 | 169 |164 |166 | 167 |An awesome list for an awesome project.
165 |
Arch Linux is an independently developed, x86-64 general purpose GNU/Linux distribution versatile enough to suit any role. Development focuses on simplicity, minimalism, and code elegance. Arch is installed as a minimal base system, configured by the user upon which their own ideal environment is assembled by installing only what is required or desired for their unique purposes.
168 | 169 |Simplicity is one of the great features of Arch Linux, which has led the community to use it for their own distributions. In this section we cover all of these through two categories: those general purpose distros (the ones we usually install on our home computers), and those others that were designed with a particular purpose in mind, be it focused on security, data rescue, servers among others.
164 | 165 |164 |166 |Linux distributions that use
165 |pacmanas a package manager.