• baseless_discourse
    link
    fedilink
    arrow-up
    2
    arrow-down
    3
    ·
    edit-2
    2 months ago

    You don’t need to use sudo command that much on linux. I personally only need to use it to edit two config files when setting up my system, that is it.

    One for pre-connection mac randomization, one to enable a kernel module I need, because my distro disable many of them by default. I am very conscious of the changes I am making. However on Windows, I have no idea what the app installers are doing.

    Not to mention, most users don’t even need to make these changes. Per-network randomization is likely good enough for most user, and they probably not on a security-hardened distro which disables tons of kernel modules.

    For a office work and entertainments, flatpak apps are more than enough. And developers can choose to get their sdk via flatpak or podman dev containers. None of them requires sudo.

    Is there a good reason for a everyday user (not a tinker nor a system admin) to use sudo in linux?

    • Aux@lemmy.world
      link
      fedilink
      arrow-up
      6
      arrow-down
      2
      ·
      2 months ago

      Not sure what you’re doing there, but it’s pretty much every other command needs sudo here… Can’t even install updates without it.

      • uis@lemm.ee
        link
        fedilink
        arrow-up
        3
        ·
        2 months ago

        Except when you install something on linux package manager of your distro is executed as opposed to installer that was made by developer of package you are installing. And you probably install install packages from your distro’s repos, unless you are on Debian of course.

        Or you can run package manager as user that usually installs in ~/.local. Or unpack yourself.

        • areyouevenreal@lemm.ee
          link
          fedilink
          arrow-up
          1
          ·
          2 months ago

          Package managers have post install scripts and hooks that would allow you to install a rootkit. Then again they can also just add services on many Linux systems, which can run as root. Just put a systemd unit file in the right place and enable it.

          The security advantage of Linux is having trusted repos and using things like FlatPak. System packages being malicious would very much be able to infect a system. Just look at the XZ backdoor for an example.

      • baseless_discourse
        link
        fedilink
        arrow-up
        1
        ·
        edit-2
        2 months ago

        The safest way to install update is via offline updates, which don’t need sudo on the user side, but requires a restart. See https://fedoramagazine.org/offline-updates-and-fedora-35/ for a good explanation.

        I believe offline upgrade is also the default on every OS out there, for example gnome software only installs updates offline.

        Even if you have to use sudo to upgrade (or journalctl, dmesg, both are sysadmin tasks and not typically done by a normal user), you are still only giving root privileges to these trusted programs distributed by your distro, not some random installers on the internet, unless you are using AUR.

        I am genuinely curious what other commands with sudo that you need to run on a daily bases, for tasks that is unrelated to system administration?