Flatpak: Difference between revisions
Guest09248 (talk | contribs) (→Usage) |
Guest09248 (talk | contribs) (→Usage) |
||
Line 87: | Line 87: | ||
Which do you want to use (0 to abort)? [0-5]:}} | Which do you want to use (0 to abort)? [0-5]:}} | ||
<br> | |||
==== Remove ==== | |||
To remove a package run: '''flatpak remove <applicationname>''' | |||
{{cat|$ flatpak remove com.github.Eloston.UngoogledChromium| | |||
ID Branch Op | |||
1. com.github.Eloston.UngoogledChromium stable r | |||
2. com.github.Eloston.UngoogledChromium.Codecs stable r | |||
3. com.github.Eloston.UngoogledChromium.Locale stable r | |||
Proceed with these changes to the system installation? [Y/n]:}} | |||
or if you dont know or dont want to type the exact package name: | |||
{{cat|$ flatpak remove chromium|Similar installed refs found for ‘chromium’: | |||
1) app/com.github.Eloston.UngoogledChromium/x86_64/stable (system) | |||
2) runtime/com.github.Eloston.UngoogledChromium.Codecs/x86_64/stable (system) | |||
3) All of the above | |||
Which do you want to use (0 to abort)? [0-3]: | |||
<br> | <br> |
Revision as of 19:28, 8 December 2021
This material is work-in-progress ... More documentation and testing is needed, but everything currently here should be safe to follow. |
Flatpak is a technology for building and distributing applications that will work universally on all Linux distributons, it is similar Snap,
Setup / Installation
From: https://flatpak.org/setup/Alpine/
To install Flatpak you will need to enable the Community repository, See: Post Installation - Repositories
To install Flatpak run:
# apk add flatpak
Next you need to add a repository, for this guide we will use the recommended repository, Flathub
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
Now reboot to complete setup
Usage
To get all of the available options to use with the flatpak command run: flatpak --help or flatpak -h,
Search
To search for applications run flatpak search <appplicationname>
Example:
Contents of flatpak search chromium
Install
To install a package run flatpak install <applicationname>
Contents of $ flatpak install com.github.Eloston.UngoogledChromium
or if you dont know or dont want to type the exact package name:
Contents of $ flatpak install chromium
Remove
To remove a package run: flatpak remove <applicationname>
Contents of $ flatpak remove com.github.Eloston.UngoogledChromium
or if you dont know or dont want to type the exact package name:
{{cat|$ flatpak remove chromium|Similar installed refs found for ‘chromium’:
1) app/com.github.Eloston.UngoogledChromium/x86_64/stable (system) 2) runtime/com.github.Eloston.UngoogledChromium.Codecs/x86_64/stable (system) 3) All of the above
Which do you want to use (0 to abort)? [0-3]:
Developers
These are all hosted on Flathub.org.
Troubleshooting
Fixing Audio Issues
If you have a minimal setup and don't have access to audio devices you will need to set the XDG_RUNTIME_DIR variable. Save the following script in /etc/profile.d/xdg_runtime_dir.sh and re-login to have it set up properly.
if test -z "${XDG_RUNTIME_DIR}"; then export XDG_RUNTIME_DIR=/tmp/$(id -u) fi
When you launch a Flatpak you will need to start pulseaudio as well:
pulseaudio --start && flatpak run com.example.Example
Links