Add installation page

This commit is contained in:
Yaakov Selkowitz 2025-05-06 13:25:34 -04:00
parent cd18ab8e52
commit bb4cc82c39
2 changed files with 42 additions and 0 deletions

View file

@ -1,3 +1,4 @@
* xref:installation.adoc[Installation]
* xref:concepts.adoc[Flatpak Concepts]
* xref:tutorial.adoc[Packaging Tutorial]
* xref:in-depth.adoc[Packaging In Depth]

View file

@ -0,0 +1,41 @@
include::{partialsdir}/attributes.adoc[]
= Installation
== Setup on Fedora Linux
Just install the `flatpak` package, if not already installed:
$ sudo dnf install flatpak
(You may need to log out and log back in.)
[NOTE]
========
On Fedora systems, installing the `flatpak` package also installs the `fedora-testing` remote, but in disabled state. To enable it, run:
....
$ flatpak remote-modify --enable fedora-testing
....
========
== Setup on Other Systems
First, install the `flatpak` package through your system's native package manager.
Then, add the Fedora stable flatpak remote:
$ flatpak remote-add --title "Fedora Flatpaks" fedora oci+https://registry.fedoraproject.org
Optionally, add the Fedora testing flatpak remote:
$ flatpak remote-add --title "Fedora Flatpaks (testing)" fedora-testing oci+https://registry.fedoraproject.org#testing
== Usage
If installation succeeded, you can now install runtimes, SDKs, or applications:
$ flatpak install fedora APP_ID
Graphical package managers (such as GNOME Software or KDE Plasma Discover) also allow for installation of applications by selecting the "Fedora Flatpaks" software source.