.\" Copyright 1980, 1991 The Regents of the University of California. .\" All rights reserved. .\" .\" %sccs.include.redist.roff% .\" .\" @(#)group.5 6.2 (Berkeley) 04/29/91 .\" .Dd .Dt GROUP 5 .Os .Sh NAME .Nm group .Nd format of the group permissions file .Sh DESCRIPTION The file .Aq Pa /etc/group consists of newline separated .Tn ASCII records, one per group, containing four colon .Ql \&: separated fields. These fields are as follows: .Bl -tag -width password -offset indent -compact .It group Name of the group. .It passwd Group's .Em encrypted password. .It gid The group's decimal ID. .It member Group members. .El .Pp The .Ar group field is the group name used for granting file access to users who are members of the group. The .Ar gid field is the number associated with the group name. They should both be unique across the system (and often across a group of systems) since they control file access. The .Ar passwd field is an optional .Em encrypted password. This field is rarely used and an asterisk is normally placed in it rather than leaving it blank. The .Ar member field contains the names of users granted the priviledges of .Ar group . The member names are separated by commas with out spaces or newlines. A user is automatically in a group if that group was specified in their .Pa /etc/passwd entry and does not need to be added to that group in the .Pa /etc/group file. .\" .Pp .\" When the system reads the file .\" .Pa /etc/group .\" the fields are read into the structure .\" .Fa group .\" declared in .\" .Aq Pa grp.h : .\" .Bd -literal -offset indent .\" struct group { .\" char *gr_name; /* group name */ .\" char *gr_passwd; /* group password */ .\" int gr_gid; /* group id */ .\" char **gr_mem; /* group members */ .\" }; .\" .Ed .Sh FILES .Bl -tag -width /etc/group -compact .It Pa /etc/group .El .Sh SEE ALSO .Xr setgroups 2 , .Xr initgroups 3 , .Xr crypt 3 , .Xr passwd 1 , .Xr passwd 5 .Sh BUGS The .Xr passwd 1 command does not change the .Nm group passwords. .Sh HISTORY A .Nm file format appeared in .At v6 .