Ubuntu’s popularity often makes it the default choice for new Linux users. But there are tons of other Linux operating systems that deserve your attention. As such, I’ve highlighted some Ubuntu alternatives so you can choose based on your needs and requirements—because conformity is boring.

  • @cbarrick@lemmy.world
    link
    fedilink
    English
    884 months ago

    From an engineering perspective, I prefer Debian distros. Apt is the greatest package manager ever built. For a production server, I’d choose Debian or maybe Ubuntu if I needed to pay someone for support.

    But for a desktop, Ubuntu kinda sucks. These days, I think I’d recommend Fedora to Linux noobs.

    And for my toys at home, I run Arch btw.

    • @n2burns@lemmy.ca
      link
      fedilink
      204 months ago

      What about Ubuntu derivatives for desktop? My go to recommendations are Pop! OS and Linux Mint (which I use).

      • @CurbsTickle@lemmy.world
        link
        fedilink
        154 months ago

        Linux Mint Debian Edition is my standard recommendation for desktop for those newer folks.

        Straight up Debian for everything else. Debian is my desktop. And all of my servers (aside from some things I’m testing for work or something where I need to test against RHEL or something).

        And Proxmox for VMs.

    • @sep@lemmy.world
      link
      fedilink
      94 months ago

      I was fighting rpm hell on redhat for the 3rd or 4th time using red hat linux 5 to 6 or perhaps 6 to 7. When i first installed debian potato on my daily driver. We had 20 ish servers, but the constant hunt for the right combo of rpm’s made me distro jump my own machine. A while later i was floored when i could apt-get full-upgrade to the next debian version without rpm hell and almost everything just worked. Never installed another redhat machine and have been using debian + kde ever since. And 99,3% of all servers i maintain are now debian. A few odd ubuntu machines for $$reasons.

        • @sep@lemmy.world
          link
          fedilink
          14 months ago

          I think yum does a better job. But i never installed another redhat machine so who knows. Been thousands of debian machines over the years tho. Luckily now it is right click -> vm from template or terraform apply. and not hours swapping floppy discs ;)

    • 2xsaiko
      link
      fedilink
      74 months ago

      Apt is the greatest package manager ever built.

      Urgh, no, it’s not. Everything about it is super crusty if you go beyond simply installing packages and adding others’ PPAs IMO.

      1. Packages often enable the services they install right away. Someone told me they got locked out over SSH because they installed a firewall package that locked everything down by default, and the service got started on install. I guess that’s technically more of an issue with the way things are packaged rather than the package manager itself, though.
      2. To temporarily install a package (so that it will get uninstalled with the next autoremove) you need to use aptitude to install the package, or run apt-mark auto after installing (which will also clear the manually installed flag if it was manually installed before), apt has no syntax for it.
      3. dpkg-scanpackages is eternally slow, I had to write a wrapper for it that runs it separately for every package and caches the result because I didn’t want to wait multiple minutes for it to rebuild the PPA package index
      4. The standard packaging tools (dh-make or debuild, I think I’ve looked at both) are insane, so much so that I gave up and wrote something that takes files similar to Arch PKGBUILDs which calls dpkg-deb at the very end.

      I could probably list more but I haven’t had to touch apt in a while, thankfully. But it is probably the #1 reason I avoid anything Debian-based. #2 is probably their Frankenstein sysvinit/systemd setup.

      I do have to say that apt remove vs purge is pretty cool though.

      What do you like about it?

      • @cbarrick@lemmy.world
        link
        fedilink
        English
        8
        edit-2
        4 months ago

        Packages often enable the services they install right away.

        That’s a problem of the package, not the package manager.

        Generally this fits with Debian’s philosophy. But regardless I think it’s out-of-scope for why Apt is good. You could make a distro with Apt and not have your packages do this.

        To temporarily install a package […]

        I’m not talking about apt the CLI tool, but the actual package manager. The plain apt tool is only designed to be a convenience wrapper for common workflows implemented in other tools.

        As you correctly pointed out, Apt has the distinction between packages installed as a dependency (“auto installed”) versus packages installed directly (“manually installed”). This is precisely one of the reasons why I consider Apt the best package manager. (Yes, I know other package managers can do this, not all though.)

        If you want to install a package as manual, then later mark it as auto, you can do that with apt-mark.

        dpkg-scanpackages is eternally slow.

        Are you maintaining a PPA for others?

        Frankly, I’ve never run into this problem.

        The standard packaging tools […] are insane.

        dh_make helps you create a package that adheres to Debian policy, and there is good reason for Debian to have those policies. But if you’re just packaging something yourself, you don’t have to use it. It’s just a template for new packages.

        At the end of the day, all you really need to create a deb is to create two files debian/control and debian/rules. These are the equivalent to a PKGBUILD. The control file specifies all of the dependency metadata, and the rules file contains the install script.

        The difference in packaging philosophy is that PKGBUILDs are external and they download the upstream sources. On the other hand, in Debian, they rehost the upstream package and add the debian directory. This means that building Debian packages is mostly hermetic: you don’t need access to the network.

        What do you like about it?

        Mostly that it makes super useful distinctions between concepts. But there are other goodies.

        • Manually installed versus auto installed.
        • Uninstalled versus purged.
        • Upgrade versus Dist Upgrade.
        • Dependency versus suggestion versus recommendation.
        • The alternatives system.
        • Pinning, and relatedly that packages can include version constraints in their dependencies.
        • Interactive configuration at install time.
        • Support for both source and binary packages.

        I also do appreciate that Debian pre-configures packages to work together with the same set of conventions out of the box. But again, that’s a property of the packages, not of Apt.

        • 2xsaiko
          link
          fedilink
          44 months ago

          I’m not talking about apt the CLI tool, but the actual package manager. The plain apt tool is only designed to be a convenience wrapper for common workflows implemented in other tools.

          Sure, but the interface is probably just as important as the actual logic behind it, isn’t it?

          As you correctly pointed out, Apt has the distinction between packages installed as a dependency (“auto installed”) versus packages installed directly (“manually installed”). This is precisely one of the reasons why I consider Apt the best package manager.

          Honestly I would consider that one of the fundamental things a package manager must do, I didn’t think it was a special thing haha

          If you want to install a package as manual, then later mark it as auto, you can do that with apt-mark.

          Yeah, I know. But if you want to manually install a package like that, you have to remember the extra step after it’s finished installing instead of before the install. It’s just unergonomic, for something that could be a flag (e.g. in emerge -1) and that I at least use fairly often.

          Another problem with it being a two-step thing is that if you do it unconditionally in a script, it doesn’t retain the flag from before the previous installation command, you need a third step, i.e. checking if the package was installed before. My use case for this was installing dependencies for a package build which should be able to be removed again afterward, while not affecting the subset that were already installed explicitly.

          Now that I think about it, it’s probably a good idea to always check if a package needs to be installed before installing it if you script it, though, because otherwise it might be unnecessarily reinstalled. Fair enough.

          Are you maintaining a PPA for others?

          Yeah, I maintain some software/config/meta packages for the computers at the uni I study at. Before, I’m pretty sure the packages were manually packaged with every update and I wanted to automate it a bit and also make clear how to get from the source tarballs to the final build.

          On the other hand, in Debian, they rehost the upstream package and add the debian directory. This means that building Debian packages is mostly hermetic: you don’t need access to the network.

          Ahh, the way it’s structured makes a lot more sense knowing that. Coming from packaging stuff for Arch, Gentoo and NixOS, where the packaging process is essentially the same for all three, with you usually supplying source download URLs, I had absolutely no idea how debian/rules would allow me to do anything and felt like I was missing a big thing. I guess it really is just a Makefile that you run directly, and that makes sense if you already have the sources in your tree?

          • Pinning, and relatedly that packages can include version constraints in their dependencies.

          This, at least version constraints, is another one I’d consider essential tbh. The rest are great though, I agree.

          • @cbarrick@lemmy.world
            link
            fedilink
            English
            44 months ago

            Sure, but the interface is probably just as important as the actual logic behind it, isn’t it?

            The logic is why I love Apt. Most robust dependency resolution algorithms I’ve used.

            But also, I don’t have any issues with the CLI. Having a distinction between apt-get and apt-cache and apt-mark doesn’t feel weird to me. You’re practically just separating the top-level sub commands by a dash instead of a space. The apt command is really just a convenience thing, and there are specialized tools for the more advanced things. Which is fine by me.

            Also, the top level apt command doesn’t guarantee a stable CLI, so for scripting you’re supposed to use apt-get and friends anyway.

            Honestly I would consider that one of the fundamental things a package manager must do.

            You’d be surprised. Homebrew (the de facto standard package manager for macOS) doesn’t do this. Though, you can at least lookup the “leaf” packages which are not dependencies of any other package.

            And, most language-specific package managers can’t do this. E.g. if you install software with pip or cargo.

            you have to remember the extra step after it’s finished installing

            If the package is in use, it shouldn’t be an orphan.

            For example, what if you race with a cleanup job that is removing orphans? (Debian is hyper stable, so I often enable unattended upgrades with autoremove. I’m not so comfortable doing that on Arch ;)

            What you’ve described is just an apt-get install when you start and and apt-get remove when you’re done. Or more properly setting it as a build dependency in your source package, to let Apt handle it.

            But also, why uninstall build tools?

            This, at least version constraints, is another one I’d consider essential tbh. The rest are great though, I agree.

            Yeah, version constraints are common. But most other package managers bail with an error when they encounter a conflict. Apt is really good about solving conflicts and proposing solutions. Often it will propose multiple solutions to your conflict for you to choose from.

            Again, it’s the solver part of Apt that makes it the best IMO.

    • @twinnie@feddit.uk
      link
      fedilink
      7
      edit-2
      4 months ago

      Bit of a noob but what’s the practical differences between Apt and the others. I use Fedora and the only difference I notice is that instead of typing apt update and apt upgrade, I just type dnf update.

      • @fxdave@lemmy.ml
        link
        fedilink
        44 months ago

        Practical difference: Both dnf and apt are slow as hell. Pacman is flying compared to them.

      • @TheGrandNagus@lemmy.world
        link
        fedilink
        English
        14 months ago

        In terms of practical differences to normal people, there aren’t many, and it pretty much comes down to the syntax of using them and the speed at which they work.

        Personally I like the syntax of using dnf, even if it is kinda slow, especially compared to the likes of pacman.

    • @silkroadtraveler@lemmy.today
      link
      fedilink
      44 months ago

      Fedora’s near daily update and restart cycle is so annoying esp when you have an encrypted hard drive. I know it’s part of the deal and I’m lazy, but all I’m using it for is a Jellyfin client.

      • @YIj54yALOJxEsY20eU@lemm.ee
        link
        fedilink
        34 months ago

        What do you mean restart cycle? You only have to restart if you want to load the new kernel (there’s technically a way to avoid even that). If you don’t feel like installing a better tool for the job like Debian, just update less, most of your packages will still be newer than most distros. Also not sure why you would encrypt if its just jellyfin client.

        • @silkroadtraveler@lemmy.today
          link
          fedilink
          2
          edit-2
          4 months ago

          In the Software Manager, whenever there is an update you must press “Restart & Install” in order to update. Never seen a restart not be required. Why would I not update when I would be potentially miss important security patches?

          Also I typically encrypt during install for enhanced privacy. Probably overkill but yeah. I don’t really have a specific reason other than that.

          My other system is Linux Mint 21.3 and restarts are very infrequent.

          • @YIj54yALOJxEsY20eU@lemm.ee
            link
            fedilink
            2
            edit-2
            4 months ago

            Ah I am not familiar with the software store, you don’t have to do that from the command line. And thats true, I’m not suggesting to never update, just less. Also if theres not much to steal on your computer, saftey is a little less important. I would personally feel comfortable updating once per month but thats up to each user. I sat on fedora 37 for way too long because Ubuntu made me afraid of major upgrades.

      • @nooneshere@discuss.tchncs.de
        link
        fedilink
        24 months ago

        Same. Albeit I’m on manjaro which suffers from the same issue. Distro hopping on an encrypted drive with no separate home partition is a huge pain in the butt

    • @Matriks404@lemmy.world
      link
      fedilink
      24 months ago

      Last time I used latest Ubuntu:

      • Default scaling on login screen and desktop sucked. If I had vision problems it would be unusable.

      • Settings application crashed after trying to open half of the menus.

      • Despite user interface looking like it’s made for tablets, the actual touch usability was horrible. I couldn’t even resize windows without being precise as fuck and there was no windows snapping despite it being a feature on Windows for more than a decade.

      • Couldn’t double click on Windows program to run it in Wine despite it being possible 10 years ago.

      • Reliance on snaps, even though installing software from 3rd party sources still being horrible.

    • @Thrashy@lemmy.world
      link
      fedilink
      1
      edit-2
      4 months ago

      I was a longtime Debian/apt diehard but I’m coming down on the same side of late. My homelab runs Proxmox (Debian based) with Ubuntu 22.04 LTS containers for more up-to-date packages, but my attempt to use KDE Neon (Ubuntu-based) for my desktop PC was a disaster. I’ve switched to Nobara (Fedora-based), and other than having to switch from Wayland back X11 because Wayland on NVidia breaks a bunch of things I need for work it’s been relatively smooth sailing.

    • @xor
      link
      04 months ago

      ubuntu uses apt too…

      • @cbarrick@lemmy.world
        link
        fedilink
        English
        6
        edit-2
        4 months ago

        Yep. From an engineering perspective I prefer Debian distros. Ubuntu is a Debian distro. I said I would consider using Ubuntu in prod, and this is the reason.

          • @cbarrick@lemmy.world
            link
            fedilink
            English
            24 months ago

            Nothing. They’re mostly the same thing.

            The Ubuntu version will sometimes print “ads” to your terminal :P.

            For a prod server, I’d choose Debian over Ubuntu if I didn’t have paid support, because I’m not a fan of Canonical. If I needed paid support, I’d choose Ubuntu, because Debian is strictly a community distro. (That community happens to include major companies, like Google.)

        • @xor
          link
          -44 months ago

          well considering the title being “ubuntu isn’t the only option” and you following “i prefer debian” with how good apt is… im sure you can see how that was misleading, then.

    • @Owljfien@iusearchlinux.fyi
      link
      fedilink
      English
      44 months ago

      Manjaro was one of my first distros when I was still learning, when I installed it, it made Wayland my default but didn’t put in the required nvidia kernel parameters and I couldn’t boot. I didn’t even know what Wayland was to know why I couldn’t boot

    • @Telodzrum@lemmy.world
      link
      fedilink
      -104 months ago

      People love to bag on Manjaro, but I know a fair number of people who use it as their primary OS. Hell, I used it as mine for almost a year and a half; I only moved to Arch because I was super bored one weekend.

      • @TheGrandNagus@lemmy.world
        link
        fedilink
        English
        22
        edit-2
        4 months ago

        I’m not saying don’t use it, I’ve used it in the past and they get some stuff right. The included programs are generally good choices, their customisations on the DEs differentiate Manjaro from others, the GUI app that lets you trivially install different kernels with the click of a button is great. Unfortunately it ended up causing breakages a couple of times, so I moved on.

        I’m saying if I were to pick a word to describe it certainly wouldn’t be “reliable”, due to their whole holding back Arch packages but not AUR ones, leading to dependency conflicts.

        I honestly don’t know why they don’t hold back AUR ones as well (or don’t hold back a week, a-la EndeavourOS). That’d solve IMO the biggest issue with the distro

        1000069305

        Plus the whole repeatedly not updating expired security certificates and telling people to just roll back their clocks to “fix” it.

        If it happened only once, I’d chalk it up as an embarrassing albeit understandable mistake. But it’s happened, what, 3 times now? It’s an issue in itself, but it also brings into question what other stuff they’re messing up behind the scenes due to poor processes.

    • @TheGrandNagus@lemmy.world
      link
      fedilink
      English
      434 months ago

      I don’t think that’s particularly wrong, tbh.

      The key words being targeted at regular desktop users.

      Obviously far from being one of the first distros, or distros with a GUI. But targeted at regular desktop users - i.e. “normies”? Absolutely.

      People need to remember how crappy and janky the desktop was before Canonical spearheaded a lot of usability improvements.

      If only they had continued along that path :/

    • @survivalmachine@beehaw.org
      link
      fedilink
      54 months ago

      targeted at regular desktop users

      While Slackware and Debian are the oldest still-maintained Linux distros, I don’t think either had a desktop-first approach.

      • Arthur BesseM
        link
        fedilink
        34 months ago

        I considered putting logos of some of the many more user-friendly pre-ubuntu distros in the meme but was lazy.

        Debian was intended to be for regular desktop users back then too, though.

        • Soleil
          link
          fedilink
          2
          edit-2
          4 months ago

          …Except Debian wasn’t even user-friendly when I used it two years after Ubuntu’s release. Red Hat Linux (not RHEL, which came later) was the only distro I’m aware of before Ubuntu that was more UX-focused.

          Edit: I forgot about a few others — SUSE, Corel Linux, Lindows/Linspire, and others. Buuuuuuut most of those distros don’t exist anymore. I still stand by that Debian didn’t used to be as noob-friendly as it is these days.

      • Arthur BesseM
        link
        fedilink
        English
        24 months ago

        there were dozens of others in the 11 years between the first and ubuntu

      • @vzq@lemmy.blahaj.zone
        link
        fedilink
        24 months ago

        Yeah, no.

        It was one of the first that didn’t make you to want to tear your hair out, I’ll give them that.

        • @TheGrandNagus@lemmy.world
          link
          fedilink
          English
          6
          edit-2
          4 months ago

          That’s what I interpreted from the “targeted at regular desktop users” part.

          Certainly not one of the first distros. But one of the first that almost any normal person would actually be able to install and use? Absolutely.

          There were multiple before it that claimed to be easy for anybody to use, but most of them still weren’t by a long stretch.

  • Dog
    link
    fedilink
    English
    32
    edit-2
    4 months ago

    Ubuntu isn’t your only option

    Thumbnail shows Pop!_OS which is a fork of Ubuntu.

  • The problem with going for alternatives is support.

    Imagine picking a random Linux flavor, then trying to figure out how to change settings, only to get either hundreds of different answers.

    • @FrostyPolicy@suppo.fi
      link
      fedilink
      264 months ago

      Depends on the alternative. E.g. Fedora and OpenSuse have very active communities and lots of help available.

    • You’re not going to get a telephone number you can call, but the documentation maintained by Arch is far superior to that offered by Ubuntu. If support is your biggest concern, you’re far better served by Arch.

    • Richard
      link
      fedilink
      English
      144 months ago

      I am kind of afraid of the corporate influence on OpenSUSE. Same for the relationship between Ubuntu and Canonical

    • Possibly linux
      link
      fedilink
      English
      74 months ago

      It is problematic in my experience. I think it comes down to Suse as a company lacking direction

      • @nelov@feddit.de
        link
        fedilink
        14 months ago

        Yeah exactly this. Not only lacking direction but the Upstream SUSE recently decided to move away from traditional desktop. Instead, they now offer ALP, which stands for adoptable linux platform. So OpenSuse has no real dekstop products to build of, and the community has to do much more work in order to produce a stable desktop distribution. I was a happy user for a almost 2 years, but in that time the community had discussion about many “small” things, many of which were about “principles”. This made ne very uncomfortable in using it, since it felt that every moment the “community” would decide something that would significantly change everything.

    • 2xsaiko
      link
      fedilink
      44 months ago

      openSuSE is cool. It was the first distro I installed way back around 2010 and still the one I would recommend to new people.

    • @Sina@beehaw.org
      link
      fedilink
      1
      edit-2
      4 months ago

      There is a shill on YT called Linuxcast. (I like his content, but he is defo a Suse shill) Personally i’d rather fix some arch fuckups, then to not have the AUR. (or if I don’t have the AUR, then just use Debian)

  • -RJ-
    link
    fedilink
    254 months ago

    Anyone else notice that the first three are Ubuntu?

  • @ShortN0te@lemmy.ml
    link
    fedilink
    244 months ago

    Manjaro: Reliable and Cutting-Edge Features

    Rarly laughed that hard. Reliably is by defenition wrong. Manjaro delays packages a few days in their main compared to Arch this can cause issues and makes them not compatible with the AUR which one of the most advertised and enabled by default feature.

    You can read more about other problems here, https://github.com/kruug/manjarno

  • @BaumGeist@lemmy.ml
    link
    fedilink
    234 months ago

    Y’all seriously overestimate thr average user:

    Debian. It’s simple, stable, minimal upkeep, rarely if ever has breaking changes, and all this out of the box.

    Someone new doesn’t need to be thrown in the deep end for their first foray into linux, they want an experience like windows or mac: simple interface, stable system, some potential for getting their hands dirty but not too much to worry about breaking

    • @TBi@lemmy.world
      link
      fedilink
      104 months ago

      Debian? First time i installed it wanted to use CD for packages instead of online. Don’t know why. Second time it didn’t have wireless drivers as these were non free.

      It’s a great distro but not for newbies.

      Fedora all the way!

        • @TBi@lemmy.world
          link
          fedilink
          24 months ago

          That’s a recent development. I also though you had to get a specific build, not the normal one.

          • @M500@lemmy.ml
            link
            fedilink
            English
            14 months ago

            I think they only started doing this in the past year or so. It is decently new, but I think it is a good move.

          • @kkremitzki@lemmy.ml
            link
            fedilink
            14 months ago

            Yep, fairly recent indeed, June of 2023, but it should work with any of the official installation media.

        • @pathief@lemmy.world
          link
          fedilink
          14 months ago

          I had this problem a week or two ago when I tried to install Debian 12 on my old MacBook pro. Ended up installing something else.

          • @kkremitzki@lemmy.ml
            link
            fedilink
            14 months ago

            Interesting, that’s kind of surprising. Do you mind sharing which model of MacBook Pro it was? I had been considering getting one for cheap for testing purposes. Also, it may not be useful to you at this point, but I figured I’d drop a link to the Debian Wiki which has a page for MBP-specific info, in case anyone reading might benefit: https://wiki.debian.org/MacBookPro

            • @pathief@lemmy.world
              link
              fedilink
              24 months ago

              I have a late 2011 MacBook pro with a broadcom wireless card.

              I’ve used this laptop to distrohop a bit and the wireless driver is always an issue. You have to install the broadcom DKMS driver or wi-fi will randomly disconnect after a random amount of time.

    • @bionicjoey@lemmy.ca
      link
      fedilink
      94 months ago

      Debian is in many ways the “deep end”. A big part of its development philosophy is prioritizing their weirdly rigid definition of Free Software and making it hard to install anything that doesn’t fit that. I’m not saying it’s not a good distro, but IDK if it’s beginner friendly.

      • @ulterno@lemmy.kde.social
        link
        fedilink
        English
        -44 months ago

        Debian is in many ways the “deep end”.

        The first time I tried Debian was when I was new to Linux, on a laptop with both the Ethernet and Wi-Fi unsupported. On top of which, it had an nVidia GPU. It was hard.

        Now I know much more about Linux and checked the Motherboard for Linux support before buying it. Debian works pretty well.

        So, it’s beginner friendly as long as someone helps you out with the installation after checking up on all the stuff you will need to run.

        • @bionicjoey@lemmy.ca
          link
          fedilink
          114 months ago

          So, it’s beginner friendly as long as someone helps you out with the installation after checking up on all the stuff you will need to run.

          In other words, it’s not beginner-friendly

          • @laverabe@lemmy.world
            link
            fedilink
            English
            1
            edit-2
            4 months ago

            I’ve only recently switched to Debian after a couple decades with Ubuntu (because snaps) and I had a few issues during installation.

            The net install failed to configure my wifi so I had to download the DVD/CD install. That worked but then I had to manually nano several config files to fix about 5 broken things for some reason.

            I installed it recently on a different system, and went with the Live option (gnome) and it installed 10x easier and smoother than Ubuntu. It installed in about 4 minutes (on a new/fast computer).

            So I would say Debian Live is VERY beginner friendly, but the other install methods are all messed up for some reason. Ubuntu’s default option is the Live option so I think that if Debian just kinda hid the other options on their website it would be 100% beginner friendly…

            • @BaumGeist@lemmy.ml
              link
              fedilink
              24 months ago

              I would reckon your original hardware also played a big part if it worked swimmingly this time around. I’ve installed half a dozen Debian- and Arch-based OSes on 3 different PCs and four different hypervisors at different times, and run a few more live CDs to boot, and my experience is that there is simply some hardware/emulated hardware that Linux in general refuses to play nicely with.

              Debian does make it harder if there are no free drivers, but my non-free wifi cards (an intel and a broadcom) don’t play nicely with any of the OSes’ defaults

            • @TheAnonymouseJoker@lemmy.ml
              link
              fedilink
              24 months ago

              The easiest hack I have encountered is to install netinstall Debian, and then on top of it, again install same Debian, without configuring or touching anything. When Debian is installed for the first time, it writes those cdrom folder files, which Debian detects upon a reinstallation. As weird as this sounds, it works reliably, both on my SSD/HDD laptop and ancient desktop with single HDD.

              Last month I dualbooted my old Windows 7 desktop with Debian 12 GNOME, works smoothly until I open 10+ Firefox tabs, a Spotify stream and a video in MPV, as it has 4 GB RAM.

          • @BaumGeist@lemmy.ml
            link
            fedilink
            14 months ago

            I’m just gonna copy from my other reply to ulterno

            Once again overestimating beginners. Any OS installation is inherently not beginner friendly, and requires helping them, regardless of Debian/Arch/Nix/windows/Big Sierra Lion Yosemite III, Esq. Jr. MD or whatever Apple’s calling it nowadays.

            I find Debians defaults during installation very beginner friendly, set and forget type stuff. It won’t use the hardware to full potential, but that’s up to advanced users to decided after they’re comfortable with the training wheels.

        • @BaumGeist@lemmy.ml
          link
          fedilink
          14 months ago

          on a laptop with both the Ethernet and Wi-Fi unsupported

          You’re right, it didn’t use to be beginner friendly. The installer has definitely gotten a lot better, and now they’re offering non-free-firmware in it; that avoids that whole issue…

          On top of which, it had an nVidia GPU

          Nouveau comes packaged. Most people that ditch nouveau do so because it doesn’t give them high performance metrics they expected out of their GPU, or it didn’t support multimonitor, or played poorly with RDP or any other issue which goes outside of my “watch youtube on my laptop” use case. That is, once again, deviating outside of “average user” territory. If you had problems getting any display or DE to work, that’s different, but you may find it sucks less now.

          So, it’s beginner friendly as long as someone helps you out with the installation after checking up on all the stuff you will need to run.

          Once again overestimating beginners. Any OS installation is inherently not beginner friendly, and requires helping them, regardless of Debian/Arch/Nix/windows/Big Sierra Lion Yosemite III, Esq. Jr. MD or whatever Apple’s calling it nowadays.

          I find Debians defaults during installation very beginner friendly, set and forget type stuff. It won’t use the hardware to full potential, but that’s up to advanced users to decided after they’re comfortable with the training wheels.

      • @FoxBJK@midwest.social
        link
        fedilink
        English
        24 months ago

        Exactly this. To normal people the computer in their house is merely a tool; just another appliance that needs to work every time without any fuss.

    • nifty
      link
      fedilink
      34 months ago

      Fedora is also apparently newbie friendly. IME, RHEL is not, but their free developer license is good if you want to learn working with it. Some employers use RHEL exclusively, so it’s not a complete waste.

      • @BaumGeist@lemmy.ml
        link
        fedilink
        24 months ago

        I might give Fedora a try then, finally see what’s so yummy to all the users. Originally stayed away because I heard it was based of RHEL and didn’t want an office-grade OS to do tinkering on.

        Also, how about that “freedom,” Red Hat?? what happened to FOSS???

      • @soulsource@discuss.tchncs.de
        link
        fedilink
        24 months ago

        “PPA” is Ubuntu’s branding for third party repositories. So, of course you will have a hard time adding a Ubuntu-specific third-party repository to anything that isn’t the Ubuntu version it’s made for…

        Debian of course supports third party repos, just like Ubuntu. On Debian they just aren’t called “PPA”.


        For more information on how to add third party repos to Debian (or Ubuntu, if you don’t use Canonical’s weird tooling), check out the Debian Wiki page on UseThirdParty or SourcesList. There’s also an (incomplete) list of third party repositories on the wiki: Unofficial. And just like with PPAs, anyone can host a Debian repo.

      • ᗪᗩᗰᑎ
        link
        fedilink
        24 months ago

        out of the loop since I’ve moved to debian and been using flatpak for the last few years, what software are you installing via PPA that isn’t generally available via flatpak?

    • @JubilantJaguar@lemmy.world
      link
      fedilink
      24 months ago

      One time the installer got stuck on my hardware. Never again. Debian deserves a lot of credit but personally I will not go near an OS unless I am certain in advance that the initial installation will go without a hitch.

    • @Specal@lemmy.world
      link
      fedilink
      24 months ago

      To add to that, there’s so much “support” out there for Debian and by proxy Ubuntu. You can Google any error and you’ll find the fix. That’s what draws new people to them. Even my self even though I’m not new to the Linux ecosystem. Ubuntu makes a perfectly good and stable server operating system.

  • z3rOR0ne
    link
    fedilink
    204 months ago

    Well as a psychopath, I always recommend beginners start with Gentoo. Guaranteed they won’t go back to Mac or Windows. /s

    • @cbarrick@lemmy.world
      link
      fedilink
      English
      194 months ago

      By starting the switch to Gentoo, they either learn Linux well enough to never want to go back, or they fubar their system so bad that they can’t go back.

    • @bunjix@lemmy.world
      link
      fedilink
      94 months ago

      Back in early 2000s I ran Gentoo as daily driver for a year, while almost a Linux noob, but eager to learn. Installation instructions were long, but excellent.

      It was fun, and worked well, but in the end the long compilation times got the better of me. Now I heard they are including binary packages, so the itch is coming back.

      Right now running opensuse tumbleweed, which works fine, sometimes too smoothly.

  • @Falcon@lemmy.world
    link
    fedilink
    174 months ago

    So Ubuntu, Ubuntu and unstable arch… here let me have a go:

    1. Fedora
    2. Tumbleweed
    3. Endeavour OS
    • easy install arch with extra repos, zfs and and dracut
    1. Bonus for the curious
    • void
    • Redcore Gentoo
    • stoiclime
      link
      fedilink
      34 months ago

      I agree with the Fedora recommendation. Just a all round great experience.

  • TronNerd82
    link
    fedilink
    154 months ago

    My personal recommendations for beginner distros:

    -OpenSUSE

    -Fedora

    -EndeavourOS

    -KDE Neon

    -ElementaryOS

    -Zorin OS

    -Linux Mint

    Or you could just install ordinary Debian, since it’s stable and well-supported. Kind of a GOAT among distros, alongside Slackware.

      • @YIj54yALOJxEsY20eU@lemm.ee
        link
        fedilink
        5
        edit-2
        4 months ago

        I don’t think this is still true, Debian 12 will install non free drivers if you choose by default. I had that issue on 11 though. I’m not sure how a graphical install works as of late but configuring sudo on a headless box is always tedious and would not be easy for a beginner to figure out.

    • ddh
      link
      fedilink
      English
      54 months ago

      I don’t use it personally, but I think there’s a good case for Linux Mint (Debian Edition)

  • @BmeBenji@lemm.ee
    link
    fedilink
    14
    edit-2
    4 months ago

    “New to Linux? Where the most daunting thing about switching to it is how many choices you have in configuration? Well, good news! You have more choices than you think!”

  • @Ganbat@lemmyonline.com
    link
    fedilink
    English
    134 months ago

    Recommending Pop_OS! to newbies

    That might just be the quickest way to make someone hate Linux forever. The glitchiest, most troublesome install I’ve ever tried to do. In the end, after two days of work just to get the damn live image to boot, the only reason I kept going was probably sunken cost falacy.

    • Tempy
      link
      fedilink
      124 months ago

      Funny. The one time I installed it, I just stuck it on a usb, booted from it, started the installer, next, next, done.

      I really didn’t have much of a different experience between installing pop os Vs Ubuntu.

      I guess some weird hardware thing that Pop OS doesn’t provide for?

      • @Ganbat@lemmyonline.com
        link
        fedilink
        English
        2
        edit-2
        4 months ago

        Yeah, maybe. My experience has been a multitude of hangs and flash drive rewrites. At first, I thought my flash drive might be bad, so I tried another and quickly determined that the other one was actually bad before going back to the first. Eventually, I ended up just unplugging everything out of desperation and for some reason that worked.

        I’m actually still working on this as I type this, currently waiting on partition changes because, while I read that 500MiB is recommended for Pop’s boot partition, the installer has told me that it’s too small…

        Since I’m still dealing with this, and given the issues I had booting the live disk, there’s a good chance this won’t even be useable in the end. I’ve used Ubuntu before, and it boots fine, but fuck if I want to deal with snap.

        Edit: Went up to 750MB (yeah, MB not MiB here, easier to think about later). Still says it’s too small. Sure wish I had some detailed documentation to work with here, instead of just “use Clean Install” in the official docs and a single Reddit comment saying “500MiB is good.” That would the bee’s damned knees.

        Edit 2: Works fine once installed. The live disk just would not boot with anything else plugged in for some reason.

        • @dingus@lemmy.world
          link
          fedilink
          English
          34 months ago

          I think it requires 1GB and it’s an incredibly recent requirement that that does not show up well in most search results. I had the same issue on a recent install and I had to go searching around the internet to figure out the actual size like you did lol.