问题详情

现需添加一新用户helen并设置其用户主目录为/helen,密码为空。还需添加新组群temp,指定其GID为600,并将temp组群作为用户helen的附加组群。请依次写出相应执行的命令。


时间:2021-12-29 03:56 关键词: Linux操作系统 计算机操作系统

答案解析

<p> 超级用户登录后,执行&ldquo;useradd&ndash;dhelen&rdquo;命令,设置helen用户不需密码就可登录。<br> 接着执行&ldquo;groupadd&ndash;g600temp&rdquo;命令创建temp组群并指定其GID。<br> 最后执行&ldquo;usermod&ndash;Gtemphelen&rdquo;命令,设置helen用户的附加组群为temp。</p>