How to change the userid or Login name in Linux

by on August 26, 2006 · 0 comments· LAST UPDATED August 29, 2006

in

Q. How do I change the userid or Login name in Linux?

A. Use usermod command which modifies the system account files to reflect the changes that are specified on the command line.

You need to pass -l option as follows to usermod command:
usermod –l NEW_LOGIN_NAME old_login_name

Where,

  • -l : The name of the user will be changed from old_login_name to NEW_LOGIN_NAME. Nothing else is changed. In particular, the users home directory name should probably be changed to reflect the new login name.
  • NEW_LOGIN_NAME : New Login name/user-id
  • old_login_name : Old login name/user-id

An example

For example, change the userid vivek to new id called sradmin. You need to type the following command:
# usermod -l sradmin vivek



If you would like to be kept up to date with our posts, you can follow us on Twitter, Facebook, Google+, or even by subscribing to our RSS Feed.


{ 0 comments… add one now }

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <kbd> <blockquote> <pre> <a href="" title="">

Tagged as:

Previous Faq:

Next Faq: