Difference between revisions of "Rename an existing user"

From Notes_Wiki
m
m
 
Line 1: Line 1:
<yambe:breadcrumb>Server_administration_tips_and_tricks|Server administration tips and tricks</yambe:breadcrumb>
[[Main Page|Home]] > [[CentOS]] > [[CentOS 6.x]] > [[Server administration tips and tricks]] > [[Rename an existing user]]
=Rename an existing user=


Utilities useradd and userdel make it easy to create a new user or to delete an existing user.  But renaming users on Linux is tricky.  To rename any user use following steps:
Utilities useradd and userdel make it easy to create a new user or to delete an existing user.  But renaming users on Linux is tricky.  To rename any user use following steps:
Line 12: Line 11:




 
[[Main Page|Home]] > [[CentOS]] > [[CentOS 6.x]] > [[Server administration tips and tricks]] > [[Rename an existing user]]
 
<yambe:breadcrumb>Server_administration_tips_and_tricks|Server administration tips and tricks</yambe:breadcrumb>

Latest revision as of 15:55, 22 July 2022

Home > CentOS > CentOS 6.x > Server administration tips and tricks > Rename an existing user

Utilities useradd and userdel make it easy to create a new user or to delete an existing user. But renaming users on Linux is tricky. To rename any user use following steps:

usermod -l <new-name> <old-name>
usermod -d /home/<new-name> -m <new-name>
groupmod -n <new-name> <old-name>


Home > CentOS > CentOS 6.x > Server administration tips and tricks > Rename an existing user