You basically want to add that user to the admin group. The easiest way to do this is to check the "allow user to administer this computer" box in the accounts pane under System Preferences.
Use "sudo usermod -a -G example_group example_user" to add a user to a group. To add a user to multiple groups at once, separate groups by commas, like "sudo usermod -a -G group1,group2,group3 example ...
In Linux systems, including Debian 12, the sudo group grants users the ability to execute administrative commands. This provides them with the privileges to install, update, and delete software, ...
Linux 101: How to give users sudo privileges on Ubuntu and Red Hat-based Linux distributions Your email has been sent Most users on your Linux machines might be non-admins who use services and ...
One clear benefit of sudo is that users don’t have to remember another password to be able to run commands as root. Besides, you probably don’t want them to have general root access. It’s also ...