1
0
mirror of https://github.com/tiyn/wiki.git synced 2025-11-07 05:31:17 +01:00

added airsonic-advanced and flatpak

This commit is contained in:
2022-09-16 03:39:44 +02:00
parent e9e359caf5
commit 417341cbea
5 changed files with 155 additions and 14 deletions

19
wiki/linux/flatpak.md Normal file
View File

@@ -0,0 +1,19 @@
# Flatpak
Flatpak is a cross-distribution package manager for linux systems.
## Setup
The `flatpak` package can be installed by most distribution specific package
managers (e.g. [pacman or yay](./arch-linux/pacman_and_yay.md)).
After installation it is important to add [flathub](https://flathub.org/home),
a source for many flatpak packages.
The addition of this can be done by running
`flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo`.
## Installing software
When software installation is done with Flatpak it is recommended to pass the
`--user` so the software is not installed system-wide but for the user only.
In practice it looks like the following:
`flatpak install --user <package to install>`.