Solaris modify a user account

by on March 16, 2006 · 1 comment· Last updated March 16, 2006

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:

{ 1 comment… read it below or add one }

1 Brian July 13, 2012 at 4:07 pm

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.

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 8 + 8 ?
Please leave these two fields as-is:
Solve the simple math so we know that you are a human and not a bot.



Previous post:

Next post: