您好,欢迎访问三七文档
当前位置:首页 > 商业/管理/HR > 质量控制/管理 > 实验二Linux用户和组的管理
实验五Lniux用户和组的管理45实验二Linux用户和组的管理(一)用户管理【需求】添加一个用户,账号为testgdlc,初始口令为123456;要求该用户的主目录为/home/share;要求该用户的基本组为root;要求该用户的shell为/bin/tcsh;要求把该用户加到mail组和news组中。【系统及软件环境】操作系统:RedHatAS4.0【实验配置文件及命令】1.配置文件:/etc/passwd,/etc/shadow,/etc/group2.命令:/usr/sbin/useradd,/usr/bin/passwd,/usr/sbin/usermod,/bin/su,/bin/cat,/bin/grep【实验步骤】1.创建用户。[root@linux/]#useradd-d/home/share-groot-s/bin/tcshtestgdlc2.为该用户创建初始口令。[root@linux/]#passwdtestgdlcChangingpasswordforusertestgdlc.Newpassword:BADPASSWORD:itistoosimplistic/systematicRetypenewpassword:passwd:allauthenticationtokensupdatedsuccessfully.3.把该用户加到mail组和news组中。[root@linux/]#usermod-Gmail,newstestgdlcLinux系统管理员实训手册464.检查该用户的设置是否正确,并用su命令切换到该用户进行检验。[root@linux/]#cat/etc/passwd|greptestgdlctestgdlc:x:1002:0::/home/share:/bin/tcsh[root@linux/]#cat/etc/group|greptestgdlcmail:x:12:mail,testgdlcnews:x:13:news,testgdlc[root@linux/]#su-testgdlc[testgdlc@linux~]$【实验故障与分析】下面的表格中列出了在实验过程中可能会出现的故障及其解决方法。看看是不是对你的实验有所帮助?如果你在实验中还遇到了其他的问题或故障,不妨记录在表格中,通过自己的实践,或者与老师、同学一起找找解决问题的方法。序号实验故障分析与解决1新创建的用户账号无法登录可能是因为没有该账号的主目录或默认shell23(二)批量添加用户【需求】添加一组ftp用户;要求用户都不能以shell方式登录系统,只能通过ftp登录。【系统及软件环境】操作系统:RedHatAS4.0【实验配置文件及命令】1.配置文件:/etc/passwd,/etc/shadow,/etc/group2.命令:/bin/touch,/usr/bin/vim,/usr/sbin/newusers,/usr/sbin/chpasswd,/bin/cat,/bin/grep【实验步骤】1.创建空白的用户文件userfile和密码文件userpwdfile。[root@linux/]#touchuserfile实验五Lniux用户和组的管理47[root@linux/]#touchuserpwdfile2.用文本编辑器vi打开用户文件userfile,添加如下内容。[root@linux/]#viuserfilestu00:x:520:520::/home/stu00:/sbin/nologinstu01:x:521:521::/home/stu01:/sbin/nologinstu02:x:522:522::/home/stu02:/sbin/nologinstu03:x:523:523::/home/stu03:/sbin/nologinstu04:x:524:524::/home/stu04:/sbin/nologinstu05:x:525:525::/home/stu05:/sbin/nologinstu06:x:526:526::/home/stu06:/sbin/nologin3.用文本编辑器vi打开密码文件userpwdfile,添加如下内容。[root@linux/]#viuserpwdfilestu00:123456stu01:123456stu02:123456stu03:123456stu04:123456stu05:123456stu06:1234564.用newusers批量添加用户。[root@linux/]#newusersuserfile5.用chpasswd批量设置用户的口令。[root@linux/]#chpasswduserpwdfile6.检查该批用户的设置是否正确。[root@linux/]#cat/etc/passwd|grepstustu00:x:520:520::/home/stu00:/sbin/nologinstu01:x:521:521::/home/stu01:/sbin/nologinstu02:x:522:522::/home/stu02:/sbin/nologinstu03:x:523:523::/home/stu03:/sbin/nologinstu04:x:524:524::/home/stu04:/sbin/nologinstu05:x:525:525::/home/stu05:/sbin/nologinstu06:x:526:526::/home/stu06:/sbin/nologinLinux系统管理员实训手册48【实验故障与分析】下面的表格中列出了在实验过程中可能会出现的故障及其解决方法。看看是不是对你的实验有所帮助?如果你在实验中还遇到了其他的问题或故障,不妨记录在表格中,通过自己的实践,或者与老师、同学一起找找解决问题的方法。序号实验故障分析与解决1添加的用户无法正常使用可能是因为文件userfile或userpwdfile的格式有错误23(三)工作组管理【需求】添加一个系统工作组workgroup1;要求把用户root和testgdlc添加到该组中。【系统及软件环境】操作系统:RedHatAS4.0【实验配置文件及命令】1.配置文件:/etc/group,/etc/gshadow2.命令:/usr/sbin/groupadd,/usr/bin/gpasswd,/bin/cat,/bin/grep【实验步骤】1.添加一个系统工作组workgroup1。[root@linux/]#groupadd-rworkgroup1[root@linux/]#cat/etc/group|grepworkgroup1workgroup1:x:102:2.把用户root添加到该组中,并查看结果。[root@linux/]#gpasswd-arootworkgroup1Addinguserroottogroupworkgroup1[root@linux/]#cat/etc/group|grepworkgroup1workgroup1:x:102:root实验五Lniux用户和组的管理493.把用户testgdlc添加到该组中,并查看结果。[root@linux/]#[root@gdlcroot]#gpasswd-atestgdlcworkgroup1Addingusertestgdlctogroupworkgroup1[root@linux/]#cat/etc/group|grepworkgroup1workgroup1:x:102:root,testgdlc【实验故障与分析】下面的表格中列出了在实验过程中可能会出现的故障及其解决方法。看看是不是对你的实验有所帮助?如果你在实验中还遇到了其他的问题或故障,不妨记录在表格中,通过自己的实践,或者与老师、同学一起找找解决问题的方法。序号实验故障分析与解决1groupaddworkgroup1报错可能是因为workgroup1组已经存在23
本文标题:实验二Linux用户和组的管理
链接地址:https://www.777doc.com/doc-2531229 .html