Q11
How can you add Amit, a new user, to your system?
A.
Using useradd
B.
Using adduser
C.
Using linuxconf
D.
All of the above
AnswerE.
None of the above
Answer: Option D
Solution
Answer: Option D
Solution:
You can add a new user named Amit to your Linux system using multiple methods.Using useradd: This is a command-line utility for adding new users to the system. You would typically use it like this: useradd Amit. This command adds the user Amit to the system.
Using adduser: This is another command-line utility that provides a more interactive way to add users. You would typically use it like this: adduser Amit. This command guides you through the process of adding a new user.
Using linuxconf: This is a graphical configuration tool that can be used to manage various aspects of a Linux system, including user management. It provides a GUI interface for tasks like adding users. However, note that linuxconf is not as commonly used as the other methods mentioned above.
So, in summary, you can add Amit, a new user, to your Linux system using useradd, adduser, or linuxconf. Therefore, the correct answer is All of the above.