Creating and modifying user in Linux
By default when you Install Linux Operating system a user will be created and that user will have full sudo privilege. However when ever you create a user after installing OS, you will need to provision required privilege for that user. In this blog i will show you few commands with useradd and usermod.
The following user karthick has been created when OS was installed and this user is added to the Wheel group to get the sudo privilege. User karthick can run privileged commands with his password.
To create a normal user in command line providing the users home directory and UID we will use as -d to specify user home directory and -u for UID.
#useradd -d <Path_To_User's_HomeDirectory> -u UID
UID is a unique identifier number used to identify the user.
Adding users to this wheel group will gain complete root access for the user.
If you do not want user to have complete root access and instead provide granular or role based access we can provision that through sudo template. you can create a sudoers template/drop-in file under /etc/sudoers.d directory.
We will see about sudoers template file in much more detail in upcoming blogs.
No comments:
Post a Comment