如何通过UID确定用户名及其所属组?

如何通过UID确定用户名及其所属组?

如何通过UID确定用户名及其所属组

答案1

我认为id可以与更多身份验证后端配合使用(在 LDAP 域上测试)。

# Get the username for your UID
id -un

# Get the username for someone else UID
id -un UID

与上面相同,但对于组:

id -gn

id -gn UID

当然,如果我很好地理解你的问题(没有真实/有效的 userid 和 groupid 含义)

答案2

您可以使用id以下命令:

id <UID>

相关内容