• juipeltje
    link
    fedilink
    67 days ago

    I’m not sure if that’s the joke and it flew over my head but isn’t editing with sudo what you should be doing anyway if it’s a system level file? You shouldn’t change permissions unless the file is actually supposed to be owned by your user.

    • @[email protected]
      link
      fedilink
      56 days ago

      You are supposed to run sudoedit.
      This command creates a temporary copy, opens it in you editor of choice and overwrites the protected file when the temp file changes.
      That way the editor doesn’t run as root.
      You can see the difference if you run shell command, like whoami, in vim.

      • juipeltje
        link
        fedilink
        16 days ago

        Ah, thanks for clarifying. I hadn’t heard of sudoedit before but that makes a lot of sense.