Skip to content

Commit 371f3ac

Browse files
authored
Merge pull request #88 from AerynOS/New-FAQ
FAQ: Re-work FAQ page into its own section
2 parents 24804ff + 682ed29 commit 371f3ac

9 files changed

Lines changed: 346 additions & 233 deletions

File tree

astro.config.mjs

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,21 @@ export default defineConfig({
8686
{ slug: "aerynos" },
8787
{ slug: "aerynos/overview" },
8888
{ slug: "aerynos/philosophy" },
89-
{ slug: "aerynos/faq" },
9089
{ slug: "aerynos/contribute" },
9190
],
9291
},
92+
{
93+
label: "FAQ",
94+
items: [
95+
{ slug: "faq" },
96+
{ slug: "faq/installation" },
97+
{ slug: "faq/filesystems" },
98+
{ slug: "faq/aerynos-features" },
99+
{ slug: "faq/general-faq" },
100+
{ slug: "faq/socials" },
101+
{ slug: "faq/lacking-features" },
102+
],
103+
},
93104
{
94105
label: "Users",
95106
items: [

src/content/docs/AerynOS/faq.mdx

Lines changed: 0 additions & 232 deletions
This file was deleted.
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
title: AerynOS Features
3+
lastUpdated: 2026-01-15T12:25:00Z
4+
description: How to use the key features of AerynOS
5+
---
6+
7+
# Usage Questions
8+
9+
### How do I make my system check for updates and install them?
10+
11+
```sudo moss sync -u```
12+
13+
This is a short hand form of:
14+
15+
```
16+
# update the local systems "view" of which packages are available
17+
sudo moss repo update
18+
# synchronize the installed state against the list of available packages
19+
sudo moss sync
20+
```
21+
22+
### How do I access the rollback feature at boot?
23+
24+
Hold down or mash your Space key repeatedly after your computer starts up.
25+
26+
### How do I verify the integrity of my install states in AerynOS?
27+
28+
```sudo moss state verify```
29+
30+
Tack on ```--help``` to see the options for verify.
31+
32+
### How do I clean out older install states in AerynOS?
33+
34+
```sudo moss state prune```
35+
36+
Tack on ```--help``` to see the options for prune.
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
title: Filesystems
3+
lastUpdated: 2026-01-15T12:25:00Z
4+
description: Information about filesystem support on AerynOS
5+
---
6+
7+
# Filesystems
8+
9+
### Why do you recommend the xfs filesystem for the root partition?
10+
11+
[Testing has shown](https://github.com/AerynOS/os-tools/blob/main/moss-filesystem-performance.md) that, due to how moss saves rollback states, xfs is by far the quickest filesystem in practice for AerynOS root partition usage.
12+
13+
We currently do not recommend either ext4 or f2fs root partitions, because testing has shown that they offer very poor performance on the first update (sudo moss sync -u) after a cold start of your computer compared to xfs.
14+
15+
### Do you support installing AerynOS on ext4?
16+
17+
We currently **strongly recommend** that you use **xfs** on your root partition for the best experience with moss and AerynOS.
18+
19+
### Do you support installing AerynOS on f2fs?
20+
21+
We currently **strongly recommend** that you use **xfs** on your root partition for the best experience with moss and AerynOS.
22+
23+
### Do you support installing AerynOS on btrfs?
24+
25+
Not yet
26+
27+
### Do you support installing AerynOS on bcachefs?
28+
29+
Not yet
30+
31+
### Do you support installing AerynOS on ZFS?
32+
33+
Not at this stage. We may or may not decide to support it at some unspecified point in the future, provided we can guarantee that we are legally in the clear to do so.

0 commit comments

Comments
 (0)