The procedure is pretty simple:
- Become superuser or get an equivalent role using sudo command/su command
- First, assign a new UID to user using the usermod command.
- Second, assign a new GID to group using the groupmod command.
- Finally, use the chown and chgrp commands to change old UID and GID respectively. You can automate this with the help of find command.
- Verify that the group owner of the file has changed using the ls command
Tutorial details | |
---|---|
Difficulty | Easy (rss) |
Root privileges | Yes |
Requirements | None |
Time | 2m |
Change a USER and GROUP ID on Linux
It cannot be stressed enough how important it is to make a backup of your system before you do this. Make a backup. Let us say, our sample user name is foo
- Foo’s old UID: 1005
- Foo’s new UID: 2005
- Our sample group name: foo
- Foo’s old GID: 2000
- Foo’s new GID: 3000
Let us see some examples and commands to change a user and group ID in Linux:
Linux command to change UID and GID
To assign a new UID to user called foo, enter:
# usermod -u 2005 foo
To assign a new GID to group called foo, enter:
# groupmod -g 3000 foo
Verify that you changed UID and GID for given users with the help of ls command:
# ls -l
Please note that all files which are located in the user’s home directory will have the file UID changed automatically as soon as you type above two command. However, files outside user’s home directory need to be changed manually. To manually change files with old GID and UID respectively, enter:
# find / -group 2000 -exec chgrp -h foo {} \;
# find / -user 1005 -exec chown -h foo {} \;
The -exec command executes chgrp or chmod command on each file. The -h option passed to the chgrp/chmod command affect each symbolic link instead of any referenced file. Use the following command to verify the same:
# ls -l /home/foo/
# id -u foo
# id -g foo
# grep foo /etc/passwd
# grep foo /etc/group
# find / -user foo -ls
# find / -group sales -ls
Conclusion
This page explained how to change group and user ownership of a file in Linux operating systems using the command-line utilities such as chgrp and others. See man page of chgrp for more info here.
🐧 Get the latest tutorials on Linux, Open Source & DevOps via:
- RSS feed or Weekly email newsletter
- Share on Twitter • Facebook • 8 comments... add one ↓
Category | List of Unix and Linux commands |
---|---|
File Management | cat |
Firewall | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
Network Utilities | dig • host • ip • nmap |
OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04 |
Package Manager | apk • apt |
Processes Management | bg • chroot • cron • disown • fg • jobs • killall • kill • pidof • pstree • pwdx • time |
Searching | grep • whereis • which |
User Information | groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w |
WireGuard VPN | Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04 |
Hi,
Very useful article…
Thanks a lot..
Nice article, thanks a lot Vivek.
__Philippe
Terrible runtime performance there. Better to have find invoke the exec command as seldom as possible. Ie., always use
find… -exec blah {} +
And *NOT* this (like it is shown on the blog post):
find… -exec blah {} \;
It’s useful article.. Thanks
Thx. Very usefull.
is it a security risk to set UID an GID..??
Another way to change file ownership:
Steps;
1- find / -gid 1001
2- for i in `find / -gid 1001`; do chgrp 4001 $i; done
Thank you very much! It’s great!