Red_Hat
EX200 · Question #15
15. Add sudo Permission Configuration Allow members of the sysmgrs group to use sudo without entering a password. Correct Answer: See the below explanation Explanation Explanation/Reference…
This configuration grants members of the sysmgrs group password-less sudo privileges for all commands by modifying the /etc/sudoers file.
Submitted by devops_kid· Apr 18, 2026Manage Security
Question
- Add sudo Permission Configuration Allow members of the sysmgrs group to use sudo without entering a password. Correct Answer: See the below explanation Explanation Explanation/Reference: Solution: [root@node1 ~]# visudo ... %wheel ALL=(ALL) NOPASSWD: ALL %sysmgrs ALL=(ALL) NOPASSWD: ALL # Verification (mandatory operation) [root@node1 ~]# su - natasha [natasha@node1 ~]# sudo cat /etc/shadow
Explanation
This configuration grants members of the sysmgrs group password-less sudo privileges for all commands by modifying the /etc/sudoers file.
Concept tested. Configuring NOPASSWD sudo for a group
Reference. https://man7.org/linux/man-pages/man5/sudoers.5.html
Topics
#sudo configuration#group permissions#privilege management#access control
Community Discussion
No community discussion yet for this question.