1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 14:22:07 +02:00
tldr/pages/linux/flatpak-run.md
renner0e f35a489441
flatpak-run: update page (#15375)
Co-authored-by: Wiktor Perskawiec <git@spageektti.cc>
2024-12-29 10:44:32 +01:00

775 B

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}}