• 0 Posts
  • 4 Comments
Joined 1 year ago
cake
Cake day: July 12th, 2023

help-circle
  • Apparently this was a controversial take

    When I first started learning how to Linux long ago everyone recommended Ubuntu… and I had a similar issue to the OP.

    I had to dump the EDID of my monitor from a Windows machine to actually get X to recognise any kind of monitor modes …it was an eye opening experience for a newbie.

    Today, I still dont really like it for other reasons (I’d take Debian over Ubuntu any day). Call me crazy here guys but I think its okay to share an opinion without being called an edgelord for it.

    (I use arch btw 🎩)




  • Being bad at a thing is the first step to being kinda good at a thing.

    First, many distros ship with sudo so its pretty ubiquitous, anything you learn about managing sudo will apply to most if not all distros, not just debian. (Great choice though ❤️)

    The correct answer is “it depends”.

    In a production environment you’ll typically have some external authentication source like IdM, FreeIPA or active directory set up. In this case its common to just give full sudo access to the group that comprise your admin team, as in most cases you have to trust that they know what they’re doing.

    Ideally you want to follow the priciple of least access and avoid privilege escalation as much as possible. For example, there may be specific instances where a non-priv user needs to run $x as a super user, in which case, you should only grant the ability to ‘sudo’ for that executable as opposed to ‘ALL’.

    As you’ve already discovered, with great power comes great responsibility. 😉