美文网首页
linux日常小记

linux日常小记

作者: 我是帅气的石头 | 来源:发表于2021-07-18 15:31 被阅读0次

    1、显示/etc目录下,以非字母开头,后面跟了一个字母以及其它任意长度任意字符的文件或目录

    [10:48:50 root@centos8 etc]# ls /etc/[^[:alpha:]]*
    /etc/1tr.txt
    
    [11:09:07 root@centos8 etc]#ls /etc/|grep "^[^[:alpha:]][[:alpha:]].*"
    1tr.txt
    

    2、复制/etc目录下所有以p开头,以非数字结尾的文件或目录到/tmp/mytest1目录中。

    mkdir /tmp/mytest1
    cp -rv /etc/p*[^0-9] /tmp/mytest1
    ls /tmp/mytest1/
    
    

    3、将/etc/issue文件中的内容转换为大写后保存至/tmp/issue.out文件中

    [root@centos8 etc]#cat /etc/issue
    \S
    Kernel \r on an \m
    
    [root@centos8 etc]#cat /etc/issue | tr 'a-z' 'A-Z'
    \S
    KERNEL \R ON AN \M
    
    [root@centos8 etc]#cat /etc/issue | tr 'a-z' 'A-Z' > /tmp/issue.out
    [root@centos8 etc]#cat /tmp/issue.out 
    \S
    KERNEL \R ON AN \M
    
    

    用户和组管理类命令

    用户命令:
    (1)useradd : 创建用户
    (2)usermod: 修改用户属性
    (3)userdel: 删除用户
    组管理命令:
    (1)groupadd: 创建组
    (2)groupmod: 修改组属性
    (3)groupdel: 删除组

    用户和组命令练习

    (1)、创建组distro,其GID为2019;

    [root@centos8 etc]#groupadd -g 2019   distro
    [root@centos8 etc]#getent gshadow  distro
    distro:!::
    
    

    (2)、创建用户mandriva, 其ID号为1005;基本组为distro;

    [root@centos8 etc]#useradd -u 1005 -g distro mandriva
    [root@centos8 etc]#getent shadow mandriva
    mandriva:!!:18826:0:99999:7:::
    
    

    (3)、创建用户mageia,其ID号为1100,家目录为/home/linux;

    [root@centos8 etc]#useradd -u 1100 -d /home/linux mageia  
    [root@centos8 etc]#getent passwd mageia
    mageia:x:1100:1100::/home/linux:/bin/bash
    
    

    (4)、给用户mageia添加密码,密码为mageedu,并设置用户密码7天后过期

    
    [root@centos8 etc]#echo "mageedu" | passwd --stdin mageia
    
    passwd  -x 7 mageia
    

    (5)、删除mandriva,但保留其家目录;

    [root@centos8 etc]#userdel mandriva
    [root@centos8 etc]#ls /home/
    linux  mandriva  wang
    

    (6)、创建用户slackware,其ID号为2002,基本组为distro,附加组peguin;

    [root@centos8 etc]#useradd -u 2002 -g distro -G peguin slackware
    [root@centos8 etc]#getent passwd slackware
    slackware:x:2002:2019::/home/slackware:/bin/bash
    [root@centos8 etc]#id slackware 
    uid=2002(slackware) gid=2019(distro) groups=2019(distro),2020(peguin)
    

    (7)、修改slackware的默认shell为/bin/tcsh;

    [root@centos8 etc]#usermod -s /bin/tcsh slackware
    [root@centos8 etc]#getent passwd slackware
    slackware:x:2002:2019::/home/slackware:/bin/tcsh
    

    (8)、为用户slackware新增附加组admins,并设置不可登陆。

    [root@centos8 etc]#groupadd admins
    [root@centos8 etc]#usermod -a -G admins slackware 
    [root@centos8 etc]#id slackware 
    uid=2002(slackware) gid=2019(distro) groups=2019(distro),2020(peguin),2021(admins)
    
    [root@centos8 ~]#usermod -s /sbin/nologin slackware
    
    
    

    5、创建用户user1、user2、user3。在/data/下创建目录test
    (1)、目录/data/test属主、属组为user1

    [root@centos8 data]#ll 
    total 0
    drwxr-xr-x. 2 root root 6 Jul 18 15:00 test
    
    [root@centos8 data]#chown user1:user1 test
    [root@centos8 data]#ll
    total 0
    drwxr-xr-x. 2 user1 user1 6 Jul 18 15:00 test
    
    

    (2)、在目录属主、属组不变的情况下,user2对文件有读写权限

    #user2 属于other  给其他组添加写权限就行
    [root@centos8 data]#chmod o+w test
    [root@centos8 data]#ll
    total 0
    drwxr-xrwx. 2 user1 user1 6 Jul 18 15:00 test
    
    

    (3)、user1在/data/test目录下创建文件a1.sh, a2.sh, a3.sh, a4.sh,设置所有用户都不可删除1.sh,2.sh文件、除了user1及root之外,所有用户都不可删除a3.sh, a4.sh

    [root@centos8 test]#chattr +i a1.sh a2.sh 
    [root@centos8 test]#lsattr a1.sh a2.sh 
    ----i--------------- a1.sh
    ----i--------------- a2.sh
    
    

    (4)、user3增加附加组user1,同时要求user1不能访问/data/test目录及其下所有文件

    [root@centos8 test]#usermod -a -G user1 user3
    [root@centos8 test]#id user3
    uid=2005(user3) gid=2005(user3) groups=2005(user3),2003(user1)
    
    

    (5)、清理/data/test目录及其下所有文件的acl权限

    [root@centos8 ~]#setfacl -b /data/test/*
    

    相关文章

      网友评论

          本文标题:linux日常小记

          本文链接:https://www.haomeiwen.com/subject/oegopltx.html