标签:12月 有用 通过 锁定 查看连接 passwd命令 chmod 使用 shell
1、创建/guanli 目录,在/guanli下创建zonghe 和 jishu 两个目录(一条命令)
[root@localhost ~]# mkdir -pv /guanli/{zonghe,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 jerry && useradd kylin && useradd tsengia && useradd obama
[root@localhost ~]# usermod -e 2020-12-30 kylin
4、将jerry、kylin、tsengia、obama等用户添加到zonghe组内
[root@localhost ~]# gpasswd -M jerry,kylin,tsengia,obama zonghe
[root@localhost ~]# grep "zonghe" /etc/group
zonghe:x:2001:jerry,kylin,tsengia,obama
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 ~]# groupadd guanli
[root@localhost ~]# vi /etc/group
8、将zonghe组内的obama用户删除
[root@localhost ~]# gpasswd -d obama guanli
9、为jerry用户设置密码为“123456”(使用普通方法)
为cucci用户设置密码为“redhat”(使用--stdin方法)
[root@localhost ~]# passwd jerry
[root@localhost ~]# echo "redhat" | passwd --stdin cucci
10、将jerry用户锁定,并查看锁定状态
1[root@localhost ~]# passwd -l jerry
[root@localhost ~]# passwd -S jerry
2[root@localhost ~]# usermod -L jerry
[root@localhost ~]# grep jerry /etc/shadow 密文前面有感叹号
11、打开两个xshell窗口,通过(who 或者 w)命令查看连接状态,并通过fuser杀掉其中一\个
[root@localhost ~]# fuser -k /dev/pts/2
12、查看cucci用户,属于那些组,并查看其详细信息
[root@localhost ~]# groups cucci
[root@localhost ~]# finger cucci
13、手工创建账号student
[root@localhost ~]# vi /etc/passwd
在最后一行手动编辑student:x:1001:1001:student:/home/student:/bin/bash
(手动编辑账号要想启用,可以passwd先设置密码,可以启用)
14、设置权限及归属:
/guanli目录属组设为guanli
[root@localhost ~]# chown :guanli /guanli
/guanli/zonghe目录的属组设为zonghe
[root@localhost ~]# chown :zonghe /guanli/zonghe/
/guanli/jishu目录的属组设为jishu
[root@localhost ~]# chown :jishu /guanli/jishu/
设置3个目录都是禁止其他用户访问的权限
1[root@localhost ~]# chmod -R o=--- /guanli/
2[root@localhost ~]# chmod -R 750 /guanli/
15、建立公共目录/ceshi
[root@localhost ~]# mkdir /ceshi
允许技术组内的所有用户读取、写入、执行文件
[root@localhost yum.repos.d]# setfacl -m d:g:jishu:rwx /ceshi/
禁止其他用户读、写、执行
[root@localhost yum.repos.d]# chmod o=--- /ceshi/
16、清除jerry用户密码
[root@localhost yum.repos.d]# passwd -d jerry
17、锁定cucci用户密码并查看状态
[root@localhost yum.repos.d]# passwd -l cucci
[root@localhost yum.repos.d]# passwd -S cucci
18、修改obama用户的UID为8888
[root@localhost yum.repos.d]# usermod -u 8888 obama
19、通过passwd命令修改kylin用户的最长密码使用期限为60天
[root@localhost yum.repos.d]# passwd -x 60 kylin
20、通过id groups finger等命令查看用户handy信息
[root@localhost yum.repos.d]# id handy
[root@localhost yum.repos.d]# groups handy
[root@localhost yum.repos.d]# finger handy
标签:12月 有用 通过 锁定 查看连接 passwd命令 chmod 使用 shell
原文地址:https://www.cnblogs.com/shinian12138/p/11279087.html