• feoh@lemmy.ml
    link
    fedilink
    arrow-up
    69
    arrow-down
    5
    ·
    2 years ago

    I get it.

    I don’t love Snaps either.

    However, a thing I try to remember and wish others would as well is simply this: Canonical is a company. Their goal is to make money. They are not out to create the ultimate free as in freedom Linux distribution.

    This does (to my mind) not make them evil, and ESPECIALLY doesn’t make the folks who work there evil. It makes them participants in the great horrible game that is Capitalism, and expecting anything else from them is going to lead to heartache, as you’ve seen.

    If you want a Linux distro that shares your preferences and won’t try to jam snaps down your throat, you might consider giving Debian a whirl as many others have.

    Continuing to ride the Ubuntu train and raging against the dying of the light when it continues chugging in the direction it’s been headed for YEARS seems … futile :)

      • feoh@lemmy.ml
        link
        fedilink
        arrow-up
        2
        ·
        2 years ago

        Nice to see that KDE is so well supported! I’d been running Manjaro KDE the last time I had Linux installed on my desktop but I may give Debian a try this time around.

      • caseyweederman@lemmy.ca
        link
        fedilink
        arrow-up
        4
        ·
        2 years ago

        There’s no way to install a snap except through Canonical’s snap store (or snap store proxy, which gets them from Canonical’s snap store).
        They’re charging for kernel security live patches. They charge for LTS. If they get enough buy-in re: snaps, they’re going to do the only thing a for-profit company can do.

        • AMDIsOurLord@lemmy.ml
          link
          fedilink
          arrow-up
          3
          ·
          2 years ago

          Red Hat and SUSE also charge for extended support, it’s literally the only fucking way to make money off of a distro

          Canonical still offers 5 years standard at the enormous cost of 0.0$

            • AMDIsOurLord@lemmy.ml
              link
              fedilink
              arrow-up
              1
              arrow-down
              1
              ·
              2 years ago

              No, but they actually do write some patches and they also do all the menial work, testing and verification to keep a piece of software serviceable for 10 years

              If you think it’s easy, go and attempt it yourself. The greatest cure for people talking shit about needed effort, according to my experience…

      • feoh@lemmy.ml
        link
        fedilink
        arrow-up
        1
        ·
        2 years ago

        I’m not gonna speak for Canonical but snaps enable commercial vendors to more readily ship their apps on the Ubuntu platform.

    • Chakravanti@sh.itjust.works
      link
      fedilink
      English
      arrow-up
      2
      arrow-down
      1
      ·
      2 years ago

      Money is literally the very incarnation of evil via the Talisman it bears.

      If they trying to make money then they are, not a fiber of otherwise, Evil.

      You’re decision to not recognize the blatant & obvious Talisman does not make you correct. It’s not your choice. It’s the choice of that occult chant and signature.

      • feoh@lemmy.ml
        link
        fedilink
        arrow-up
        1
        ·
        2 years ago

        Humans are inherently evil. There is but a thin veneer we call “civilization” that stops of from beating each other to death with whatever object can be brought to hand.

        And what does any of this have to do with the price of tea in China? :)

    • jkrtn@lemmy.ml
      link
      fedilink
      arrow-up
      12
      arrow-down
      1
      ·
      2 years ago

      It is absolutely a different situation if it is opt-in. If Ubuntu made Snaps opt-in, people might not like them but it’d be a minor critique instead of fleeing the distro.

    • Rustmilian@lemmy.world
      link
      fedilink
      English
      arrow-up
      4
      ·
      edit-2
      2 years ago

      Fedora Silverblue is in an entirely different ball game. You can’t use dnf because it’s an immutable image based system where you can’t make direct changes to the Root system without making use of the rpm-ostree & VCS mechanisms. You’re making a conscious choice by using Fedora Silverblue, and the pros out way the cons for most people making that choice.
      In contrast Fedora Workstation allows you to use dnf just as normal because it’s not an immutable image based system.
      Ubuntu doesn’t make use of any such system so their reliance on containerized user-space apps isn’t a technical one.

    • milicent_bystandr@lemm.ee
      link
      fedilink
      arrow-up
      1
      ·
      2 years ago

      Right. I just installed OpenSUSE MicroOS to try out, and it’s the same idea. I agree with some of the anti-snap rhetoric. Closed, Canonical-centric system for profit; linking placeholder debs to download a snap. But the philosophy of all user applications come as chunky but robust packages that (almost) don’t interfere with each other and the system - I think that might be the future for safer computing for non-technical users.

    • 𝘋𝘪𝘳𝘬@lemmy.ml
      link
      fedilink
      arrow-up
      3
      arrow-down
      3
      ·
      2 years ago

      People love using flatpaks instead (yes I know of all the shortcomings, but you can always choose another install method for that broken package).

      Not on Ubuntu nor Fedora, but yes: If a “larger” package breaks on update and there is no fix available and I use that application on a pretty much daily basis, then I remove it and install the Flatpak variant.

      Flatpaks are slower, do not work super well with Wayland (especially scaling, some applications have GIANT text, some have 5 pixels large text, but fortunately I was able to circumvent those issues for most applications I use via Flatpak), and you need to run another system for updates and updates are friggin slow.


      There is also this monstrosity ...

      It is not fault-proof and it throws an error if there no older drivers, but this prevents accumulation of outdated Nvidia driver packages (at one point I had nearly 30 different variants installed, resulting of a couple of gigabytes of unused drivers that are “updated” every time I ran flatpak update).

      flatpak-update () { 
          LATEST_NVIDIA=$(flatpak list | grep "GL.nvidia" | cut -f2 | cut -d '.' -f5)
          flatpak update
          flatpak remove --unused --delete-data
          flatpak list | grep org.freedesktop.Platform.GL32.nvidia- | cut -f2 | grep -v "$LATEST_NVIDIA" | xargs -o flatpak uninstall
          flatpak repair
          flatpak update
      }
      

      On the other hand, the applications provided via Flatpak just work.

      And messing with 32 bits multilib dependency hell for Steam or installing pretty much half of Kde just for Kdenlive simply isn’t something I want.

      • fortified_banana@beehaw.org
        link
        fedilink
        English
        arrow-up
        4
        ·
        edit-2
        2 years ago

        I think they got the nvidia driver accumulation thing straightened out. On Fedora 40, I had it automatically remove a bunch of older versions and now it only lists the 64 and 32 bit versions I expect it to.

        $ flatpak list | grep nvidia
        nvidia-550-76	org.freedesktop.Platform.GL.nvidia-550-76		1.4	system
        nvidia-550-76	org.freedesktop.Platform.GL32.nvidia-550-76		1.4	system
        
        

        Edit: looks like it’s fixed by this.

      • Rustmilian@lemmy.world
        link
        fedilink
        English
        arrow-up
        3
        ·
        2 years ago

        I think you have a typo in your last paragraph.
        Flatpak should run better on Wayland compared to Snaps. Not to mention Flatpak has much better XDG Portal Integration.

  • 0xtero@beehaw.org
    link
    fedilink
    arrow-up
    25
    ·
    2 years ago

    Someone being enraged about snap on behalf of Windows users was certainly a take I didn’t know I needed.

  • banazir@lemmy.ml
    link
    fedilink
    arrow-up
    16
    ·
    edit-2
    2 years ago

    Disappoint is a sober word here. I am actually pissed at the casual arrogance of Ubuntu and its parent company Canonical.

    I’m actually baffled that this would come as a surprise to people. Canonical has been like this for a long time and you’d have to have blinders on to not see it. They are hell-bent on doing things their way and ignoring the wider Linux community and even their users. That is, of course, their prerogative and to some degree I even welcome their attempts at differentiating their distro from others. As a user though you should be aware of their history and the apparent direction they’re heading.

    I just wish they’d stop stalling and went all-in on snaps already, since that’s pretty obviously where they’re headed.

  • Avid Amoeba@lemmy.ca
    link
    fedilink
    arrow-up
    15
    arrow-down
    3
    ·
    2 years ago

    I could barely make out the straw man hiding between the ads. The author is working hard for them clicks!

  • gerdesj@lemmy.ml
    link
    fedilink
    English
    arrow-up
    11
    arrow-down
    1
    ·
    edit-2
    2 years ago

    “I understand that Canonical has every right to make the decision about their product.”

    That seems fair. There are loads of distros available so why not try something else if you don’t like Ubuntu?

    Linux and other mainstream Unices such as FreeBSD or OpenBSD int al (that’s not something I ever thought I’d be able to say a few decades back) are not Windows or Apples or whatevs. You do you and not them!

    If Ubuntu fails to scratch your itch then move on. Debian is the upstream for Ubuntu so you’ll probably be fine with that instead. There is loads of documentation for Debian via the wiki etc and of course most Ubuntu docs will apply as well.

    • BigMikeInAustin@lemmy.world
      link
      fedilink
      English
      arrow-up
      3
      ·
      2 years ago

      You only got part of the quote, and not the part that really is what the article is about.

      I understand that Canonical has every right to make the decision about their product. You want to promote Snap over Deb, fine. But don’t do it in a deceiving manner.

      And there is a pretty reasonable middle ground:

      If you would like to keep your ‘Snap store’ deb-free, fine! At least have the decency to provide Gdebi by default for local deb file installation.

  • fl42v@lemmy.ml
    link
    fedilink
    arrow-up
    14
    arrow-down
    4
    ·
    2 years ago

    Idk, I probably haven’t used Debian derivatives long enough, but isn’t installing random .deb-s somewhat of a bad practice? I mean, repos exist for a reason (ignoring the fact they usually have like 3 packages in the official repos)

    • ursakhiin@beehaw.org
      link
      fedilink
      arrow-up
      8
      ·
      2 years ago

      Some things we would want to install aren’t in the official repos. Downloading the deb file is a solution to that for newer users.

    • Papamousse@beehaw.org
      link
      fedilink
      arrow-up
      1
      ·
      2 years ago

      You should try MX, it’s Debian based, and they have their own repo full of .deb, up to date, never break

  • citizensv@lemmy.ml
    link
    fedilink
    arrow-up
    7
    ·
    2 years ago

    That’s precisely I changed to MX Linux. I won’t use ubuntu for a long time I guess.

  • m-p{3}@lemmy.ca
    link
    fedilink
    arrow-up
    5
    ·
    edit-2
    2 years ago

    For my server I simply switched to Debian and add the packages I need on top, without all that proprietary snap crap.

    For desktop I’m tempted to switch to an atomic distro like Fedora Silverblue (Gnome) or Fedora Onyx (Budgie), and for the Steam Deck I’d go with Bazzite.

  • RubberElectrons@lemmy.world
    link
    fedilink
    arrow-up
    3
    ·
    2 years ago

    I was a long-time Xubuntu fan, tried Ubuntu directly from canonical for my new laptop.

    It’s been a bit rocky, all things considered. I think I’m trying something else next time, maybe mint or whatever. Maybe Xubuntu, but only if this snap shit has been cut out.

  • fox2263@lemmy.world
    link
    fedilink
    English
    arrow-up
    1
    ·
    2 years ago

    Is this snap stuff something the Ubuntu variants avoid I.e Ubuntu studio and Ubuntu budgie?

      • NateNate60@lemmy.world
        link
        fedilink
        arrow-up
        10
        ·
        2 years ago

        Well, it’s complicated, isn’t it?

        Ubuntu is built on Debian’s skeleton. RHEL is built on Fedora. Many more examples.

        Linux Mint is based on Ubuntu, but in a much deeper and more connected way than Ubuntu is based on Debian. It even shares many of the same software repositories.

        The next closer level is how Xubuntu, Lubuntu, and Kubuntu are just slight variations of Ubuntu. People like to call these “flavours”.

        Finally, you get to the closest layer—the thousands of people who have taken a stock Ubuntu installation and swapped out one or two components to meet their requirements. We don’t even think of these as distros in their own right.

        It’s a continuous spectrum, and any labels we try to apply will be pretty much guaranteed to have fuzzy edges.

      • Diplomjodler@lemmy.world
        link
        fedilink
        arrow-up
        6
        ·
        2 years ago

        No. It based on Ubuntu but without all the bullshit. .deb ist standard and flatpak is also built in. Whenever both are available, you get a choice right from the software manager. Mint is very much its own thing and great if you want to ditch Ubuntu.

      • just_another_person@lemmy.world
        link
        fedilink
        arrow-up
        1
        arrow-down
        2
        ·
        2 years ago

        When you start thinking that everyone on the Internet deserves to hear your opinions on everything, it’s time to shut the fuck up. This guy is at that step, and this “article” has no information in it that could be deemed useful to a reader.

  • NapKat@discuss.tchncs.de
    link
    fedilink
    English
    arrow-up
    1
    ·
    2 years ago

    Definitely time to just use debian, mint MX, or pop os even. I did a lot of hopping though and I’ve settled on Nobara KDE. Mint was great but the Bluetooth was finicky for some reason, and debian is mostly just ubuntu with some gui stuff removed. PopOS is basically just debian until COSMIC but still good too.