zoukankan      html  css  js  c++  java
  • Chapter04 作业

    1、创建/guanli 目录,在/guanli下创建zonghe 和 jishu 两个目录(一条命令)
    [root@localhost ~]# mkdir -p /guanli/zonghe && mkdir -p /guanli/jishu
    2、添加组帐号zonghe、caiwu、jishu,GID号分别设置为2001、2002、2003
    [root@localhost ~]# groupadd  -g 2001  zonghe && groupadd -g 2002 caiwu && groupadd -g 2003 jishu
    3、创建jerry、kylin、tsengia、obama用户,其中的kylin用户帐号在2020年12月30日后失效
    [root@localhost ~]# useradd -g jerry  jerry && useradd -e 2020-12-30 kylin && useradd tsengia && useradd obama
    4、将jerry、kylin、tsengia、obama等用户添加到zonghe
    [root@localhost ~]# gpasswd -M jerry,kylin,tsengia,obama zonghe
    5、创建handy、cucci用户,其中cucci帐号的登录Shell设置为“/sbin/nologin”
    [root@localhost ~]# useradd handy && useradd -s /sbin/nologin cucci
    6、将handy、cucci等用户添加到jishu组内
    [root@localhost ~]# gpasswd -M handy,cucci jishu
    7、将上述的所有用户均要求加入到guanli组内
    [root@localhost ~]# gpasswd -M jerry,kylin,tsengia,obama,handy,cucci guanli
    8、将zonghe组内的obama用户删除
    [root@localhost ~]# gpasswd -d obama zonghe
    9、为jerry用户设置密码为“123456”(使用普通方法)
       为cucci用户设置密码为“redhat”(使用--stdin方法) 
    [root@localhost ~]# passwd jerry
    [root@localhost ~]# echo "redhat" | passwd --stdin cucc
    10、将jerry用户锁定,并查看锁定状态
    [root@localhost ~]# passwd -l jerry
    锁定用户 jerry 的密码 。
    passwd: 操作成功
    [root@localhost ~]# passwd -S jerry
    jerry LK 2019-07-30 0 99999 7 -1 (密码已被锁定。)
    11、打开两个xshell窗口,通过(who 或者 w)命令查看连接状态,并通过fuser杀掉其中一个
    [root@localhost ~]# who
    root     :0           2019-07-30 11:37 (:0)
    root     pts/1        2019-07-30 11:38 (192.168.100.191)
    root     pts/0        2019-07-30 11:49 (192.168.100.191)
    [root@localhost ~]# fuser -k /dev/pts/0
    12、查看cucci用户,属于那些组,并查看其详细信息
    [root@localhost ~]# id cucci
    uid=506(cucci) gid=506(cucci) 组=506(cucci),2002(jishu),2003(guanli)
    13、手工创建账号student
    [root@localhost ~]# vi /etc/passwd
    student:1007:1007::/home/student:/bin/bash
    [root@localhost ~]# vi /etc/group
    [root@localhost ~]# vi /etc/shadow
    14、设置权限及归属:
       /guanli目录属组设为guanli
       /guanli/zonghe目录的属组设为zonghe
       /guanli/jishu目录的属组设为jishu
       设置3个目录都是禁止其他用户访问的权限
    [root@localhost ~]# chgrp guanli /guanli
    [root@localhost ~]# chgrp zonghe /guanli/zonghe
    [root@localhost ~]# chgrp jishu /guanli/jishu
    [root@localhost ~]# chmod 740 /guanli && chmod 740 /guanli/zonghe && chmod 740 /guanli/jishu
    drwxrw----.  2 root jishu    6 7月  31 10:22 jishu
    drwxrw----.  2 root zonghe   6 7月  31 10:22 zonghe
    15、建立公共目录/ceshi
       允许技术组内的所有用户读取、写入、执行文件
       禁止其他用户读、写、执行
    [root@localhost tmp]# mkdir ceshi
    [root@localhost ~]# chgrp jishu /tmp/ceshi/
    [root@localhost tmp]# chmod 770 ceshi/
    drwxrwx---.  2 root jishu    6 7月  31 11:11 .
    16、清除jerry用户密码
    [root@localhost ~]# passwd -d jerry
    清除用户的密码 jerry。
    passwd: 操作成功
    17、锁定cucci用户密码并查看状态
    [root@localhost ~]# passwd -l cucci
    锁定用户 cucci 的密码 。
    passwd: 操作成功
    [root@localhost ~]# tail -5 /etc/shadow
    cucci:!!:18108:0:99999:7:::
    18、修改obama用户的UID为8888
    [root@localhost ~]# usermod -u 8888 obama
    [root@localhost ~]# id obama
    uid=8888(obama)
    19、通过passwd命令修改kylin用户的最长密码使用期限为60天
    [root@localhost ~]# passwd -x 60 kylin
    调整用户密码老化数据kylin。
    passwd: 操作成功
    kylin:!!:18108:0:60:7::18626:
    20、通过id groups finger等命令查看用户handy信息
    [root@localhost ~]# id handy
    uid=1005(handy) gid=1005(handy) 组=1005(handy),2003(jishu)
    [root@localhost ~]# groups handy
    handy : handy jishu
    [root@localhost ~]# finger handy
    Login: handy             Name:
    Directory: /home/handy               Shell: /bin/bash
    Never logged in.
    No mail.
    No Plan.

  • 相关阅读:
    HDU 2594 Simpsons’ Hidden Talents(辛普森一家的潜在天赋)
    HUD 2203 亲和串
    POJ 3461 Oulipo(乌力波)
    FJNU 1154 Fat Brother And His Love(胖哥与女神)
    Polygon Triangles
    Double it(水题模拟+逆向思维)
    Sphenic numbers(素数筛)
    Desktop(模拟)2016-2017 ACM Central Region of Russia Quarterfinal Programming Contest
    Weather Station(基础DP)2016-2017 ACM Central Region of Russia Quarterfinal Programming Contest
    找零钱(经典DP)
  • 原文地址:https://www.cnblogs.com/tianzhendefupo/p/11276749.html
Copyright © 2011-2022 走看看