HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

flatpak run — Run flatpak applications and runtimes. More information: <https://docs.flatpak.org/en/latest/flatpak

Submitted by: @import:tldr-pages··
0
Viewed 0 times
flatpak runcommandrunandruntimescliflatpakapplications
linux

Problem

How to use the flatpak run command: Run flatpak applications and runtimes. More information: <https://docs.flatpak.org/en/latest/flatpak-command-reference.html#flatpak-run>.

Solution

flatpak run — Run flatpak applications and runtimes. More information: <https://docs.flatpak.org/en/latest/flatpak-command-reference.html#flatpak-run>.

Run an installed application:
flatpak run {{com.example.app}}


Run an installed application from a specific branch e.g. stable, beta, master:
flatpak run --branch={{stable|beta|master|...}} {{com.example.app}}


Run an interactive shell inside a flatpak:
flatpak run --command={{sh}} {{com.example.app}}


Run an installed application with a specific runtime version:
flatpak run --runtime-version={{24.08|master|stable|...}} {{com.example.app}}


Run an installed application with a different runtime (but same version number):
flatpak run --runtime={{org.freedesktop.Sdk}} {{com.example.app}}

Code Snippets

Run an installed application

flatpak run {{com.example.app}}

Run an installed application from a specific branch e.g. stable, beta, master

flatpak run --branch={{stable|beta|master|...}} {{com.example.app}}

Run an interactive shell inside a flatpak

flatpak run --command={{sh}} {{com.example.app}}

Run an installed application with a specific runtime version

flatpak run --runtime-version={{24.08|master|stable|...}} {{com.example.app}}

Run an installed application with a different runtime (but same version number)

flatpak run --runtime={{org.freedesktop.Sdk}} {{com.example.app}}

Context

tldr-pages: linux/flatpak run

Revisions (0)

No revisions yet.