我阅读了这些教程:
使用时该adduser
命令出现在流程中:
Changing the user information for username
Enter the new value, or press ENTER for the default
Full Name []:
Room Number []:
Work Phone []:
Home Phone []:
Other []:
Is the information correct? [Y/n]
由于显而易见的原因,可能会留空或写入过时的数据,因此,这篇文章的原因是:
- 命令是什么看和编辑用户的信息?
有关 ”看“方法应该再次显示相同的结构
Full Name []:
Room Number []:
Work Phone []:
Home Phone []:
Other []:
当然,显示的数据要符合创建的数据或最新的数据更新才能知道是否正确。
答案1
阅读man chsh chfn getent;man 5 passwd
。前两个更改 shell 和全名,第三个检索用户的信息。第四个解释字段。getent
,以及| cut -d: -f#
可以轻松提取单个字段。阅读man cut
。