What is the chown nobody:nogroup in ubuntu equivalent to that in centos? Nobody:nobody?

Thank you.

Mar.19,2022

Ubuntu

$ id nobody
uid=65534(nobody) gid=65534(nogroup) =65534(nogroup)

CentOS

$ id nobody
uid=99(nobody) gid=99(nobody) =99(nobody)

id is completely different. If you are sharing (such as nfs) or backing up files (such as tar), security management (such as selinux), or docker), please keep id (numbers) consistent when you need to specify users.

Menu