User management operation needs to be done by root user or super user.
adduser [username]
You get a new username applying system default configuration, to list\change this configuration use option -D
adduser -D
#list default configuration
adduser -D --expiredate=2020-12-22
#change Default EXPIRE date to Dec 22 2020
#alternativly you can edit defaults in file /etc/default/useradd
-p
-N
-g
-G
adduser -h
userdel [username]
#delete user
userdel -r [username]
#delete user with home directory and mail spool
To list groups assigned to user use command groups
groups [username]
To add existing user to group, use usermod
command
usermod -g [group] [username]
#adding user to group as new primary
usermod -G [new,list,of,groups] [username]
#new list of supplementary groups
usermod -a [more,groups] [username]
#appending user to supplementary groups
To remove user from group, use gpasswd
gpasswd -d [username] [group]
Some distros (like ubuntu) uses adduser
to add existing user to an existing group, deluser
to remove user from group and addgroup
to create new user group.
adduser [username] [group]
deluser [username] [group]
Using groupdel
groupdel [group]
#delete group
you may force it with -f
option so it will be deleted even if its primary of a user
passwd [username]
#change password of specific user
passwd
#change my password
To list user account aging info use -l
option with chage
chage -l [username]
for more about it use chage --help
Linux grants ownership by default to the creator, this can be changed by command chown
as the following:
chown [option] [owner] [: [group]] FILE(s)
#change the owner and/or group of each FILE to OWNER and/or GROUP.
chown [OPTION]... --reference=RFILE FILE(s)
#change the owner and group of each FILE to those of RFILE.
Command chmod
to modify permissions, that can be noted with symbols: [rwx] or octals [0-7]. Permissions are given associated with:
chmod u=rwx,g=rx,o=r myfile
# file owner user can read,write and execute myfile
# file owner group members can read and execute
# others can only read
The following is equivalent using octal notaion:
chmod 754 myfile
Where each digit is assigning permissions for user,group and others, each digit is sum of permissions supposed to be assigned where:
to view files with owners and permissions use option -l
with ls
command.