转载: http://www.cyberciti.biz/faq/understanding-etcpasswd-file-format/
The /etc/passwd contains one entry per line for each user (or user account) of the system. All fields are separated by a colon (:) symbol. Total seven fields as follows.
Username: It is used when user logs in. It should be between 1 and 32 characters in length.
Password: An x character indicates that encrypted password is stored in /etc/shadow file.
User ID (UID): Each user must be assigned a user ID (UID). UID 0 (zero) is reserved for root and UIDs 1-99 are reserved for other predefined accounts. Further UID 100-999 are reserved by system for administrative and system accounts/groups.
Group ID (GID): The primary group ID (stored in /etc/group file)
User ID Info: The comment field. It allow you to add extra information about the users such as user's full name, phone number etc. This field use by finger command.
Home directory: The absolute path to the directory the user will be in when they log in. If this directory does not exists then users directory becomes /
Command/shell: The absolute path of a command or shell (/bin/bash). Typically, this is a shell. Please note that it does not have to be a shell.
分享到:
相关推荐
3. **/etc/passwd文件**:理解Linux系统的用户管理和权限控制,包括如何查看和管理`/etc/passwd`文件,以及防止恶意访问。 4. **用户隐私保护**:随着个人信息的增多,保护用户数据安全是博客系统设计时必须考虑的...
标题“OA.rar_../../../etc/passwd_../../etc/passwd_../etc/passwd_/etc/p”提到了一个RAR压缩包文件,其中包含了多个试图访问“/etc/passwd”文件的路径。这可能涉及到网络安全和文件系统路径遍历漏洞。在Linux...
标题中的"Blog.rar_../../../etc/passwd_../etc/passwd_/etc/passwd_java博客_博客"提到了几个关键点:一个使用Java制作的博客网站,以及涉及到Linux系统中`/etc/passwd`文件的路径。这暗示了可能在讨论关于安全性...
标题中的"exam_jsp.zip_../../../etc/passwd_../../etc/passwd_../etc/passwd_"提到了一个ZIP压缩文件和几个潜在的Unix/Linux系统路径。这可能是关于安全性的描述,尤其是涉及目录遍历攻击(Directory Traversal ...
这个应用可能允许用户从服务器下载特定的文件,而这里提到的文件路径("../../../etc/passwd_../../etc/passwd_../etc/passwd_etc/passwd")似乎暗示了潜在的安全问题。 首先,我们要了解“/etc/passwd”是一个存在...
标题中的"blog_jsp.rar_../../../etc/passwd_/etc/passwd_java 博客_java博客_main"提到了几个关键点:`jsp`、`struts`、`../../../etc/passwd`、`/etc/passwd`、`java`、`博客`、`main.jsp?artcl`。这些关键词涉及...
标题中的"google.rar_../../etc/passwd_/etc/passwd_google_mtheme.asp?search"似乎是一个压缩文件的名称,其中包含了几个关键元素。首先,“google.rar”表明这是一个使用RAR格式压缩的文件,RAR是一种常见的文件...
使用`cat /etc/passwd`命令可以查看系统中的所有用户信息,包括用户名、用户ID(UID)、组ID(GID)、用户主目录和默认Shell。每个用户都有一个对应的条目,这些信息对于管理用户权限和配置非常重要。 2. **查看...
总之,了解/etc/passwd文件对于理解Linux用户账户管理至关重要。这个课件将为你提供深入的洞察力,使你能够有效地配置和维护Linux系统中的用户权限。通过详尽的学习和实践,你将在Linux世界中更加游刃有余。
在Linux操作系统中,/etc/passwd文件是管理用户账户的核心组件之一。...下面将详细解析这些字段的含义和作用。...在日常运维中,熟悉/etc/passwd文件的结构和功能,能帮助我们更好地管理用户权限,确保系统的稳定和安全。
2. 口令(passwd):尽管这个字段存放的是用户口令的加密串,但由于/etc/passwd文件对所有用户都是可读的,因此存在安全隐患。为了提高安全性,许多Linux系统会使用shadow技术,将加密后的用户口令字存放到/etc/...
然而,出于安全考虑,自Linux的Shadow Suite引入以来,明文密码被移动到了`/etc/shadow`文件中,使得`/etc/passwd`文件对所有用户可读,但`/etc/shadow`仅对管理员(root)可见。 其次,`/etc/shadow`文件的结构。...
例如,`head -10 /etc/passwd` 显示/etc/passwd文件的前10行,而`tail -10 /etc/man.config > /root/exam/osta.txt` 显示/etc/man.config的最后10行并将结果保存到/root/exam/osta.txt。 2. **系统资源监控**:`top...
`/etc/passwd`文件的每一行代表一个用户账户,而这个文件本身是可读的,但为了安全,敏感信息如口令通常不会直接写入。因此,理解这个文件的结构和内容对于Linux系统管理员来说至关重要,因为它直接影响到用户权限的...
1. /etc/passwd:用户账户信息。 2. /etc/group:用户组信息。 3. /etc/inittab:初始化系统进程的配置。 4. /etc/fstab:文件系统挂载点的定义。 5. /etc/resolv.conf:DNS解析设置。 6. /etc/hostname:系统的主机...
再者,系统涉及到的“../etc/passwd”文件是一个典型的Linux系统文件,其中包含了系统用户账户的信息,包括用户名、密码(通常以星号表示,非明文)、用户ID(UID)、组ID(GID)等。在设计中,可能与权限管理和用户...
在Linux中,出于安全性考虑,用户的明文密码并不会直接存储在文件中,而是通过加密算法进行处理后存入/etc/shadow文件。 1. /etc/shadow文件的作用: /etc/shadow文件的主要任务是保护用户密码,防止未经授权的...
1. 理解/etc/passwd和/etc/group文件的含义; 2. 掌握桌面环境下管理用户与组群的方法; 3. 掌握利用shell命令管理用户与组群的方法; 4. 掌握批量新建用户账户的步骤和方法。 二、实验环境 实验环境为Linux操作...
- **理解/etc/passwd和/etc/group文件的含义:** - `/etc/passwd` 文件包含了系统中所有用户的账号信息,每个用户一行,由冒号分隔的若干字段组成,具体包括: - 用户名 - 密码占位符(实际密码存储于/etc/shadow...
9. 查看 /etc/passwd 的头 3 行和尾 3 行:使用 `#head -3 /etc/passwd` 和 `tail -3 /etc/passwd` 命令可以查看 /etc/passwd 的头 3 行和尾 3 行。 目录操作 10. 一次性创建目录 /text/1/2/3/4:使用 `#mkdir -p ...