I am hosting an Ubuntu Server on a high-end workstation for BioInformatics related analysis and would like to give root privileges to few more users as it will give them the freedom to install packages without having to wait for my permission.
Is there a way that I can provide root access to few users, but their activity will not interfere with other user accounts. i.e. Can the root privileges be restricted to a level that the modifications made by that user is "User" specific, but will not apply across the whole server
Is there an admin level above the "root" (.i.e.Super root) which will allow myself to administer the other root accounts during maintenance ?
Thanks
man sudoers
- you may be able to grant the users access to specific commands. If you want "the modifications made by that user is "User" specific,", you don't needroot
, justUser
. If they haveroot
, they can affect the system, which affects other users. – waltinator May 11 '17 at 05:43