The number is the group ID (gid
). Groups and Users in a *nix system are numerical IDs (uid
and gid
). In a file system, the owning user and group will only ever be stored by its ID.
To display this, the user database is queried. With a modern *nix system, this could be anything, e.g. an LDAP directory, but the classic format is using the files /etc/passwd
and /etc/group
. If you see an ID instead of a name, it means your system couldn't find the entry in the user/group database. With a remote LDAP directory, this happens e.g. when the network is down. If you just use a traditional /etc/group
file, this only happens when there is no entry.
Either the group was deleted or somebody changed the group of the file using a (non-existing) ID instead of a name or the file was copied from another system having this group and preserving the IDs while copying.
How to fix it depends on what you want. You can just chgrp
the file to an existing group. Or you can create a group with this ID.