RHEL: How to change a USER/GROUP UID/GID and all owned files

RHEL: How to change a USER/GROUP UID/GID and all owned files

# How to change a UID/GID and all belonging files

USER=myuser
OLDUID=7773
NEWUID=7774
GROUP=mygroup
OLDGID=157
NEWGID=158



# Assign a new UID to USER. Any files which the user owns and which are located in the
# directory tree rooted at the user's home directory will have the file user ID changed
# automatically. Files outside of the user's home directory must be altered manually.

usermod -u $NEWUID $USER

# Assign a new GID to GROUP. Any files which the old group ID is the file group ID must
# have the file group ID changed manually.

groupmod -g $NEWGID $GROUP


# Manually change files with old UID

find / -user $OLDUID -exec chown -h $USER {} \;


# Manually change files with old GID

find / -group $OLDGID -exec chgrp -h $GROUP {} \;
0 (0)
Article Rating (No Votes)
Rate this article
Attachments
There are no attachments for this article.
Comments
There are no comments for this article. Be the first to post a comment.
Full Name
Email Address
Security Code Security Code
Related Articles RSS Feed
Jak wygenerować silne hasła jednorazowe w Linuksie?
Viewed 2983 times since Thu, May 24, 2018
How setting the TZ environment variable avoids thousands of system calls
Viewed 11027 times since Mon, May 21, 2018
LVM basic
Viewed 2863 times since Sat, Jun 2, 2018
How to Install and use Lsyncd on CentOS 7 / RHEL 7 rsync
Viewed 5430 times since Wed, Oct 31, 2018
RHEL: How to rebuild and/or patch a RPM package
Viewed 10163 times since Sat, Jun 2, 2018
Jak ustawić LVM, jak robić snapshoty oraz automatycznie powiększać LV, czyli małe howto
Viewed 5594 times since Sun, May 20, 2018
systemd Auto-restart a crashed service in systemd
Viewed 4291 times since Fri, Jan 17, 2020
Zabijanie wszystkich procesów użytkownika
Viewed 3370 times since Thu, May 24, 2018
RHEL: iSCSI target/initiator configuration on RHEL7
Viewed 12469 times since Sat, Jun 2, 2018
LVM: Move allocated PE between Physical Volumes
Viewed 4899 times since Sat, Jun 2, 2018