You need to use usermod command. The usermod utility modifies a user's login definition on the system. It changes the definition of the specified login and makes the appropriate login-related system file and file system changes.
For example adds user didi to the group called pusers.
# usermod -G pusers didi
Both useradd and usermod support following common options:
- -u 1030 : Use UID 101
- -g pusers : Specify user’s primary login group
- -G ftp,admin,www : Specify user’s secondary group membership
- -d /nas/home/user : Specify user’s home directory
- -s /usr/bin/bash : Specify user’s login shell
These are most common options read man page of usremod for rest of all options.
Caution
According to man page of usermod "The system file entries created with this command have a
limit of 512 characters per line. Specifying long arguments to several options may exceed this limit."
You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop













{ 1 comment… read it below or add one }
Why do so many sysadmins continue to change a user account by directly editing the /etc/passwd file? Especially when they themselves are supposed to my so security minded.