this post was submitted on 31 Mar 2024
411 points (96.8% liked)

Linux

47231 readers
1145 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 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 3 points 5 months ago (4 children)
[–] [email protected] 7 points 5 months ago (1 children)

Still in the process of moving my server from Ubuntu to Debian.

[–] [email protected] 2 points 5 months ago* (last edited 5 months ago)

That should be possible by changing the repos, shouldnt it? I will try this in a VM.

Downgrading will be harder than rebasing from Ubuntu LTS to Debian Sid for example. But at the same time I imagine its easier to downgrade from Sid to Stable on the same Distro.

[–] dandroid 4 points 5 months ago (1 children)

Not the person you are replying to, but my server is on Ubuntu. It was the distro my work used and it was probably the only distro I had heard of at the time I set up my server. At this point I run so much shit that can never go down on my server that I will never consider touching the distro ever.

Plus, who cares? It's a server. I don't interact with the distro. I only ssh in, run services through containers, and add port forwards. Every distro is identical for that stuff. I even prefer old kernel and package versions for ultra stability, as my server can never go down. Sure, Debian would be the same, but why touch it now? That's just asking for headache.

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

Because its a server. And you want your server to stay online and not get hacked. that's why

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

What about Ubuntu is more vulnerable? Ubuntu isn't vulnerable to this newly discovered CVE.

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

Everything downloaded in snap is vulnerable because snap does not cryptographically verify all packages, unlike apt.

Also Ubuntu has newer packages in apt than Debian, which is more dangerous.

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

snap does not cryptographically verify all packages, unlike apt

This isn't correct. Run snap download htop from your terminal and you'll receive two files: The actual squashfs image that gets mounted in /snap/htop/<revision number> and a .assert file that cryptographic signature data about this snap file. Modify the squashfs image and snap won't let you install it without passing --dangerous to bypass that check, just like apt-get's --allow-unauthenticated.

The problem here exists at a different level: the level of what's getting signed. Conceptually speaking, running sudo snap install htop is a bit like running sudo add-apt-repository ppa:maxiberta/htop && sudo apt install htop. The package is built by the owner of the snap/ppa, and what Canonical is cryptographically verifying to you is that they got this from the owner of the (snap|ppa). This is roughly equivalent to domain verification for HTTPS (the type of HTTPS certificates Let's Encrypt uses).

There are some different security considerations. For a snap, you need to be aware of the publisher each time you install something new. For PPAs, on the other hand, you only have to worry about this when you add a new PPA. However, the trade-off also works in the other direction. One snap can't just replace another snap on your system, whereas a malicious PPA could provide, for example, a malicious libc6 update.

These are both different (and lesser) assertions than what Ubuntu makes with its standard apt repositories. But they are still cryptographically backed.

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

Can you please link to the documentation that describes this?

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

I'm not sure if there's a single document explaining all of that, but this document talks about snap's assertions. I'm not entirely sure but I believe this file contains the main snapd business logic for actually checking these assertions.

On the PPA side I don't even know whether there is documentation for this - it's just the result of my understanding of how apt works and my own history creating PPAs.

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

You're literally replying under a submission that's about unreviewed malware that got accepted in their repo.

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

Those are snaps. I don't use those on my server. AFAIK, they're mostly used for GUI applications. I don't even have a GUI on my server. I wouldn't even know how to install or run a snap from command line.

Most things that run in my server are containerized services that I wrote personally. So as long as there isn't a vulnerability in podman or my reverse proxy, and as long as keep my base containers up to date (they pull the latest base image each time the image is built), I'm mostly fine.

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

I want to make something clear before I start: the person to whom you are replying is being quite toxic in this thread and I'm sorry you had to interact with them. (They're also saying a bunch of incorrect stuff.)

That said - I personally have more non-GUI snaps installed than GUI ones. Including in my homelab, where having the latest htop is very convenient and where I've got several actual server apps installed as snaps (postgres and plex being the first two that come to mind).

[–] dandroid 1 points 5 months ago

That's good to know, and I had a feeling I was wrong about that.

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

Those are snaps. I don’t use those on my server.

Just because you don't use them doesn't invalidate the earlier statement.

[–] dandroid 2 points 5 months ago

And that's totally fine, but it doesn't invalidate my claim that I don't really care, because it doesn't affect me. 🤷

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

It works for me, and my tinkering times are behind me.

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

I use it because a class wanted me to either use it in a VM or use WSL but WSL didn't work and I figured it was easier to set up a dual boot than setting up a VM since I've installed Linux quite a few times.