在 passwd 结构中:
struct passwd {
char *pw_name; /* username */
char *pw_passwd; /* user password */
uid_t pw_uid; /* user ID */
gid_t pw_gid; /* group ID */
char *pw_gecos; /* user information */
char *pw_dir; /* home directory */
char *pw_shell; /* shell program */
};
参考: http: //man7.org/linux/man-pages/man3/getpwnam.3.html
(通常是用户的user information
全名)在属性中找到pw_gecos
。gecos 是什么意思,为什么这样命名,这个名字背后的历史是什么?