Flatpak Comandos Basicos (Para Imprimir)

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

FLATPAK Cheat Sheet

Identifier Formats
ID ID + branch
<ending>.<organization>.<name> <ID>//<branch>

ID + architecture + branch ID + architecture


<ID>/<arch>/<branch> <ID>/<arch>//

Basic Commands Remotes


Install List configured remotes

$ flatpak install <remote> <ID> $ flatpak remotes


$ flatpak install <path-to-flatpakref>
Add a remote

Uninstall $ flatpak remote-add <remote-name> <URL>


$ flatpak uninstall <ID> Use --if-not-exists to avoid errors.

Run Remove a remote


$ flatpak run <ID> $ flatpak remote-delete <remote-name>

Update List remote contents


$ flatpak update $ flatpak remote-ls <remote-name>

Search all remotes


$ flatpak search <term>

Flatpak Builder
Command format $ flatpak-builder <build-dir> <manifest>

Definitions

<build-dir> Directory where build stuff happens


<manifest> Path to the manifest file

Options

--repo=<repo-name> Export to a specified repository


--install Install the build result, if it succeeds
--install-deps-from=<remote> Install build dependencies from a specified remote

You might also like