用户信息在哪个文件夹
时间: 2023-10-09 21:15:01 浏览: 89
Windows用户目录迁移工具 Profile Relocator
用户信息在Linux系统中通常存储在 `/etc/passwd` 文件和 `/etc/shadow` 文件中。
`/etc/passwd` 文件包含了系统上所有用户的基本信息,如用户名、用户 ID、主目录、默认 shell 等等。该文件的格式如下:
```
username:x:uid:gid:comment:home:shell
```
其中,`username` 表示用户名,`uid` 表示用户 ID,`gid` 表示用户所属的主组 ID,`comment` 表示注释信息,`home` 表示用户的主目录,`shell` 表示用户的默认 shell。
`/etc/shadow` 文件包含了所有用户的密码散列值以及密码过期、锁定等信息。该文件的格式如下:
```
username:password:lastchange:minage:maxage:warn:inactive:expire:flag
```
其中,`username` 表示用户名,`password` 表示密码散列值,`lastchange` 表示上次密码更改日期,`minage` 表示密码最小使用期限,`maxage` 表示密码最大使用期限,`warn` 表示密码过期提醒时间,`inactive` 表示账号不活动时的保护期,`expire` 表示账号的绝对过期时间,`flag` 表示保留字段。
需要注意的是,`/etc/shadow` 文件只有 root 用户才有读权限,普通用户无法查看该文件内容。
阅读全文