this post was submitted on 19 May 2025
72 points (97.4% liked)

Linux

54541 readers
861 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 6 years ago
MODERATORS
 

If I install software from .deb file, do I still get the updates & upgrades when I run sudo apt update / upgrade ? Or is flatpak the way to go? I'm not very familiar with flatpak, so I'm trying to avoid, but it seems that cons are limited. I'm currently running mint cinnamon (how original, I know), and asking because i can't seem to add mullvad-vpn stable repo. Thank you for your help,

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

I did get to install the Mullvad repo on Mint. The thing is they use the "lsb_release -cs" command which give the codename of Mint and not Ubuntu.

But if you use

awk -F= '$1=="UBUNTU_CODENAME" { print $2 ;}' /etc/os-release

It will give the codename for Ubuntu used by Mint.

Try this from the Mullvad instruction with this change :

# Download the Mullvad signing key
sudo curl -fsSLo /usr/share/keyrings/mullvad-keyring.asc https://repository.mullvad.net/deb/mullvad-keyring.asc

# Add the Mullvad repository server to apt
echo "deb [signed-by=/usr/share/keyrings/mullvad-keyring.asc arch=$( dpkg --print-architecture )] https://repository.mullvad.net/deb/stable $(awk -F= '$1=="UBUNTU_CODENAME" { print $2 ;}' /etc/os-release) main" | sudo tee /etc/apt/sources.list.d/mullvad.list

# Install the package
sudo apt update
sudo apt install mullvad-vpn
[–] [email protected] 4 points 1 week ago

Thank you, kind stranger. I and many others probably would've never found this out.

[–] [email protected] 4 points 1 week ago (2 children)

I'm already married, but, would you marry me? I'm guessing you're probably very useful to have around.

[–] [email protected] 3 points 1 week ago (1 children)

Haha, thanks for the kind words but I did forget to add the source. I did not figure this out by myself. The link

[–] [email protected] 3 points 1 week ago

I just told my wife she's going to have to share now🤣

You give the info, and then a link to the source? There's still hope for humanity 😉

[–] [email protected] 3 points 1 week ago