what are the user names at the end of the each line in the /etc/group file for?

1

I find that if I want to sign a user to certain group, just modify the group id in the /etc/passwd file.

yozloy:x:501:5:this is my own user::

It already works! why should I add the user name in the group file?

admin:x:5:yozloy

mko

Posted 2011-11-26T10:11:44.587

Reputation: 869

Answers

2

In Unix like operating systems, users are organized into groups, every users is in at least one group(primary group), and may be in other groups. Group membership gives you special access to files and directories which are permitted to that group.

Every user is in a primary group defined in /etc/passwd and may be in several supplementary groups(additional groups defined in /etc/group).

Sachin Divekar

Posted 2011-11-26T10:11:44.587

Reputation: 776

3

The group in /etc/passwd is the user's primary group. /etc/group allows users to belong to additional groups.

Ignacio Vazquez-Abrams

Posted 2011-11-26T10:11:44.587

Reputation: 100 516