how to add linux user to group?
Answers were Sorted based on User's Feedback
Answer / ron
useradd -g primary_group -G secondary_group username
passwd password
Is This Answer Correct ? | 1 Yes | 1 No |
Answer / shanu
gpasswd
Usage: gpasswd [-r|-R] group
gpasswd [-a user] group
gpasswd [-d user] group
gpasswd [-A user,...] [-M user,...] group
#gpasswd -a user1 dba
Adding user user1 to group dba
#gpasswd -M user2,user3 dba //multiple users
or
#usermod -g primary_grp username
#usermod -g dba user1
#usermod -G sec_grp username
#usermod -G oper,oinstall oracle
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / v.balaviswanathan
groupadd EXAMPLE
useradd -G EXAMPLE <username>
Is This Answer Correct ? | 1 Yes | 2 No |
Answer / ajay songare
linux create a Two type of Group thare are:-
1.primary group represent g
2.secondary group represent G
# useradd -g groupname username
# useradd -G groupname username
usercreate and after that Add group
# usermod -g groupname username
# usermod -G groupname username
Is This Answer Correct ? | 1 Yes | 2 No |
How do you list all the files in a directory, including hidden files?
What the command used for list the contents of your home directory, current directory and all subdirectories?
What is ls command and what it does?
How can you copy lines into the buffer in command mode?
Which command will show you free/used memory?
What are the examples of simple command?
tell me something about linux commands.
Did you ever write any inerface files / profile file to support unix environment setup ?
How do I check my disk space?
What does curl command do in linux?
Does linux cp command overwrite?
What does the following command line produce? Explain each aspect of this line. $ (date ; ps -ef | awk {print $1}' | sort | uniq | wc -l ) >> Activity.log