Manage Users in Debian
Create Groups
# group add finance
# group add development
# group add others
Create User and Assign to Groups
# useradd –m –g finance –G development,others –s /bin/csh testuser
Information about a User
# id testuser
# groups testuser
Modify and Delete a User
# usermod testuser
# userdel –r testuser
Deactivate User Account
# usermod –L testuser
Switch to a user and move to home directory
# su – testuser
Set a Password for a User
# passwd testuser
Set Password Policies
# chage testuser
User, Groups and Password Database
# /etc/passwd
# /etc/groups
# /etc/shadow
Template Directory for Home Folder
# /etc/skel/
admin on April 29th 2010 in Linux