this post was submitted on 24 Oct 2024
45 points (97.9% liked)

Linux

5174 readers
529 users here now

A community for everything relating to the linux operating system

Also check out [email protected]

Original icon base courtesy of [email protected] and The GIMP

founded 1 year ago
MODERATORS
 

Just made a dedicated repo about a bunch of tricks I regularly use.

A KDE Plasmoid is definetly missing on that list. Having it work without garbage Electron, at least most of the time, is crucial.

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

The one-line command I recommend for install Mullvad's RPM repo is as follows:
curl --tlsv1.3 -fsS https://repository.mullvad.net/rpm/stable/mullvad.repo | pkexec tee -a "/etc/yum.repos.d/mullvad.repo"

My explanation: This curl command enforces strong TLS encryption and pipes the fetched repo file to the tee (append) command, which requests to run with root permissions and appends the file to the specified path. pkexec is useful instead of plain sudo because if the current user isn't in wheel/sudo groul it requests the local admin account to authenticate.

[–] [email protected] 1 points 6 days ago (2 children)
[–] [email protected] 1 points 6 days ago (1 children)

I used tee -a because that is how I have seen it recommended. If it works without then do that instead.

[–] [email protected] 1 points 6 days ago* (last edited 6 days ago)

I checked, -a is append and if that file already exists it would write the stuff to the end of it again.

> is the correct one

load more comments (2 replies)