Solaris modify a user account

by LinuxTitli on March 16, 2006 · 0 comments

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."

Featured Articles:

Share this with other sys admins!
Facebook it - Tweet it - Print it -

We're here to help you make the most of sysadmin work. So, subscribe!

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 12 + 10 ?
Please leave these two fields as-is:
Are you a human being? Solve the simple math so we know that you are a human and not a bot.



Previous post:

Next post: