How to ensure that all identity changes for a privileged user account belonging to the wheel
group on a privileged user account are performed without having to provide a password without deleting the password for the root account?
How to ensure that all identity changes for a privileged user account belonging to the wheel
group on a privileged user account are performed without having to provide a password without deleting the password for the root account?
It sounds like you want these users accounts to be able to sudo to root with out providing a password. If this is the case, this is actually quite easy.
You can create a file in /etc/sudoers.d to define the sudo behaviour and also to define sudo perimissions.
Say you have an account named a account defined named lindsay. You want Lindsay to have sudo access, without needing to type in her password when using sudo. To accomplish this you would do the following:
That's it! Our user Lindsay will now be able to sudo to root without re-authenticating by typing in her password. You can find more details about the syntax and some examples in the link below.
Be aware of the security implications of doing this since you are intentionally weakening the security of your Ubuntu installation.
Cheers!
Sudoers - Community Help Wiki
First, by default, there is no password set by default for the root account on Ubuntu.
Second, you access root by using sudo, and you may configure sudo to run without a password if you so desire. This can be set per user or per group.
How to configure sudo is covered
Execute sudo without Password?
Sudoers file, enable NOPASSWD for user, all commands
and https://www.sudo.ws/man/1.8.15/sudoers.man.html
I know it is an answer with a number of links, but, I am not sure if I am understanding what you are asking and IMO this is one instance where you really should read the manual before editing.
IMO use visudo as it will check your syntax before saving changes.
See Is there a GUI for visudo?
and https://www.digitalocean.com/community/tutorials/how-to-edit-the-sudoers-file-on-ubuntu-and-centos