this post was submitted on 06 Mar 2024
396 points (95.6% liked)

linuxmemes

20463 readers
429 users here now

I use Arch btw


Sister communities:

Community rules

  1. Follow the site-wide rules and code of conduct
  2. Be civil
  3. Post Linux-related content
  4. No recent reposts

Please report posts and comments that break these rules!

founded 1 year ago
MODERATORS
 

Background-Story: I did a "flatpak update" on a remote client and every package wants the PW for downloading and for installing again. I had to enter the password like 30 times or more.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 12 points 5 months ago (1 children)

next time you can use su or sudo

[–] [email protected] 4 points 5 months ago (2 children)

That installs and or updates roots flatpaks

[–] [email protected] 12 points 5 months ago (1 children)

Only with --user (I think)? Root can also update the "system installation" flatpaks, which are presumably what OP needed a password for.

[–] [email protected] 3 points 5 months ago

Ah, I've never tried

[–] [email protected] 4 points 5 months ago* (last edited 5 months ago) (1 children)

Which is what flatpak will always do unless provided with the --user flag.

[–] [email protected] 1 points 5 months ago

That installs and or updates roots flatpaks

Which is what flatpak will always do unless provided with the --user flag.

By default it operates in system-wide mode, which is different from "root's".

flatpak list and sudo flatpak list will both show you what is installed system wide, and flatpak list --user will show you your user's, and sudo flatpak list --user will show you the root user's flatpaks installed in per-user mode (of which there are typically none).