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

flatpak update — Update flatpak applications and runtimes. More information: <https://docs.flatpak.org/en/latest/flat

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandupdateandruntimescliflatpakflatpak updateapplications
linux

Problem

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

Solution

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

Update all installed applications and runtimes (use -y to confirm all prompts automatically):
flatpak update


Update only a specific app:
flatpak update {{com.example.app}}


Update/Downgrade to a specific commit (also see flatpak remote-info and flatpak mask):
flatpak update --commit {{COMMIT}} {{com.example.app}}

Code Snippets

Update all installed applications and runtimes (use `-y` to confirm all prompts automatically)

flatpak update

Update only a specific app

flatpak update {{com.example.app}}

Update/Downgrade to a specific commit (also see flatpak remote-info and flatpak mask)

flatpak update --commit {{COMMIT}} {{com.example.app}}

Context

tldr-pages: linux/flatpak update

Revisions (0)

No revisions yet.