minus-squareMellow@lemmy.worldtoAsk Linux@lemmy.world•How to add a single user to the sudoers list?linkfedilinkEnglisharrow-up1·edit-29 months agoFile: /etc/sudoers username ALL=(ALL) ALL https://www.linuxfoundation.org/blog/blog/classic-sysadmin-configuring-the-linux-sudoers-file -or- Debian uses a group called sudo. Add a user to that group. usermod -aG sudo <username> linkfedilink
File: /etc/sudoers
username ALL=(ALL) ALL
https://www.linuxfoundation.org/blog/blog/classic-sysadmin-configuring-the-linux-sudoers-file
-or-
Debian uses a group called sudo. Add a user to that group.
usermod -aG sudo <username>