• youmaynotknow@lemmy.ml
    link
    fedilink
    arrow-up
    0
    ·
    4 days ago

    OpenSUSE is hardly what I would consider noob friendly, but it certainly beats remaining under Microsoft’s oppressing thumb.

        • muhyb@programming.dev
          link
          fedilink
          arrow-up
          0
          ·
          4 days ago

          They’re fine for a stable release I think. Nvidia is on 550 for example. For Major updates, ping me next year since I’ll try it then, when new Leap arrived.

          • ReversalHatchery@beehaw.org
            link
            fedilink
            English
            arrow-up
            0
            ·
            4 days ago

            I don’t understand, sorry. what I meant is the way you as the user do upgrades. you grab a terminal, elevate and run the system update command (zypper refresh, zypper update). major version upgrades are more complicated.

            I can do this sure. But this is not noob friendly the slightest. and the YaST graphical tools don’t make it much better either.
            I won’t say that the update system of windows is good because why the fuck does searching for updates minutes, and other reasons. but the UI of it is much better. it tells you what will it update, it has a button for starting the process, an automatism for it too. there’s also a menu for the update history.

            • muhyb@programming.dev
              link
              fedilink
              arrow-up
              0
              ·
              4 days ago

              Not sure when the last time you used openSUSE but the reason why I think it’s noob-friendly is you don’t need a terminal to update the system (talking about the KDE version here). When there is an update a notification pops up, you go to system tray, click on the icon and do the updates. You can even see a list what’s been updating. It doesn’t even ask a password, probably thanks to polkit.

              • ReversalHatchery@beehaw.org
                link
                fedilink
                English
                arrow-up
                1
                ·
                17 hours ago

                leap 15.4, with KDE.

                When there is an update a notification pops up, you go to system tray, click on the icon and do the updates.

                you mean the menu that will make your system unstable if you dont reboot immediately after updates?
                if I can remember, it also does not do it automatically, by which I mean there is no setting to make it automatic.

                to try to make it better I had to install a separate package, of which I have not found any information on suse documentation, to have the KDE built-in automatic update system.

                and it does not work.
                it restarts the system twice, after which zypper still says that all the updates need to be installed.

                • muhyb@programming.dev
                  link
                  fedilink
                  arrow-up
                  1
                  ·
                  15 hours ago

                  you mean the menu that will make your system unstable if you dont reboot immediately after updates?

                  Not sure what that is or what menu it is. But yeah, the updates are not automatic, you have to manually start it. That “must restart after the update” thing is related to systemd, not openSUSE.

                  If someone wants an auto update system, that can be arranged with scripts. No idea where that could be done via GUI though. Sorry, I cannot check it right away since it’s not my system. I don’t use openSUSE or KDE myself.

                  • ReversalHatchery@beehaw.org
                    link
                    fedilink
                    English
                    arrow-up
                    1
                    ·
                    edit-2
                    11 hours ago

                    Not sure what that is or what menu it is. But yeah, the updates are not automatic, you have to manually start it. That “must restart after the update” thing is related to systemd, not openSUSE.

                    I don’t think it’s systemd’s fault that I repeatedly experienced general system unstability after installing updates with zypper.
                    By this I mean several elements of the system becoming unresponsive, like the shutdown, reboot, log out buttons stopping from working (them being pressed only resulting in a syslog error about being unable to start the program that shows the countdown), but also other programs like firefox acting weiry.
                    I don’t think it’s the fault of opensuse specifically.

                    And if you think about it, it’s logical that this would happen.
                    Because version A of programs is what is still running, but the filesystem now has version B of a lot of things including executables and libraries, with lots of changes, and the assumptions for which version A programs were coded do not hold up anymore. And they crash, not even start, or do bad things. Processes that make use of D-Bus are especially sensisensitive to this, but others like firefox sometimes get tangled into it when they load a library only after the files were updated (yes I’ve experienced that too, both on linux and windows).

                    It’s no wonder windows installers always ask you to close all (related) programs before installing or updating. It’s not unique to windows: android kills the app when it is updated, abd system updates require a restart as well. I don’t know what does flatpak do, but I’m sure that after updating the package, only after restarting its app will the changes get applied.