sysadmin

User Management

sysadmin

User Management # List users currently logged in: who List all existing user accounts w/properties: passwd -Sa (as root) To add a new user, use the useradd command: # useradd -m -G {additional_groups} -s {login_shell} {username} -m/--create-home the user’s home directory is created as /home/username. -G/--groups a comma separated list of supplementary groups which the user is also a member of. -s/--shell a path to the user’s login shell. ...