You can easily add them by following the instructions on their site.

On immutable fedora it can be done via

curl -o - https://repository.mullvad.net/rpm/stable/mullvad.repo | sudo tee /etc/yum.repos.d/mullvad.repo

rpm-ostree uninstall mullvad-vpn --install mullvad-vpn

# after reboot, if not working
sudo systemctl start mullvad-daemon
  • bizdelnick@lemmy.ml
    link
    fedilink
    arrow-up
    5
    ·
    7 months ago

    wget https://repository.mullvad.net/rpm/stable/mullvad.repo | sudo tee /etc/yum.repos.d/mullvad.repo

    This command won’t work.

    • Pantherina@feddit.deOP
      link
      fedilink
      arrow-up
      3
      ·
      7 months ago

      Better? I was not sure did it with cd and forgot the parameters for wget XD isnt it -O /path/to/destination/ ?

      • Baut [she/her] auf.@lemmy.blahaj.zone
        link
        fedilink
        arrow-up
        3
        ·
        edit-2
        7 months ago

        I think you can just replace wget with curl.
        Alternatively -O - I think.
        You can’t use the path directly because of permissions. And you shouldn’t run wget with root permissions.

        • Pantherina@feddit.deOP
          link
          fedilink
          arrow-up
          2
          ·
          edit-2
          7 months ago

          Yes thats why I did that and seperated it from the wget as I also think thats not the best idea

          Okay fixed it. Damn thats weird, I think I just used sudo wget X -O /path/ but not a good idea I guess.

      • Kazumara@feddit.de
        link
        fedilink
        arrow-up
        7
        ·
        edit-2
        7 months ago

        Because wget doesn’t use standard output for the downloaded file by default, instead it creates a file with the name in the url in the workingdir. If you want it to use standard output you need -O -