手动添加用户步骤
摘录自鸟哥的文档,可以尝试一下不使用useradd的方式添加一个用户: 如下: 先建立所需要的群组(vi /etc/group) 建立账号的各个属性(vi /etc/passwd) 将passwd与shadow同步化(pwconv) 建立该账号的密码(passwd acount) 建立使用者家目录(cp -r /etc/skel /home/account) 6. 更改家目录属性 ( chown -R account.group /home/account ) 建立新的群组 test ,设其 GID 为 520 [root @test /root ]# vi /etc/group ----略 test:x:520:test <==新增群组,且群组的人为 test ,GID 为 520 建立test的各个属性 [root @test /root ]# vi /etc/passwd ----略 test:x:520:520:testing account:/home/test:/bin/bash <==建立各个属性 同步化/etc/passwd与/etc/shadow 建立新的群组 test ,设其 GID 为 520 [root @test /root ]# vi /etc/group ----略 test:x:520:test <==新增群组,且群组的人为 test ,GID 为 520 建立test的各个属性 [root @test /root ]# vi /etc/passwd ----略 test:x:520:520:testing account:/home/test:/bin/bash <==建立各个属性 同步化/etc/passwd与/etc/shadow [root @test /root ]# pwconv <==将 passwd 的资料转入 /etc/shadow 中! 建立密码 [root @test /root ]# passwd test <==建立使用者test密码 Changing password for user test New password: Retype new password: passwd: all authentication tokens updated successfully 建立家目录并转化家目录的拥有者 [root @test /root ]# cp -r /etc/skel /home/test [root @test /root ]# chown -R test:test /home/test OK. 拥有帝国一切,皆有可能。欢迎访问phome.net |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |