JavaScript is required

Tất cả các nhóm được liệt kê trong file /etc/group .Mỗi một nhóm được thể hiện trên một dòng.Hãy xác định trật tự đúng của các trường trên thực thể này:

A.
groupname, password, GID, member list
B.
GID, groupname, password, member list
C.
groupname, GID, password, member list
D.
GID, member list, groupname, password
Trả lời:

Đáp án đúng: A


File `/etc/group` contains information about user groups on Linux/Unix systems. Each line represents a group and follows the format: `groupname:password:GID:member_list`. `groupname` is the group's name, `password` is usually 'x' or '*', `GID` is the unique Group ID, and `member_list` is a comma-separated list of users in the group. Therefore, the correct order is groupname, password, GID, member list.

Câu hỏi liên quan