1、建立/guanli 目錄,在/guanli下建立zonghe 和 jishu 兩個目錄(一條命令)[root@localhost ~]# mkdir -p /guanli/zonghe &&mkdir /guanli/jishu
2、新增組帳號zonghe、caiwu、jishu,gid號分別設定為2001、2002、2003
[root@localhost ~]# groupadd -g 2002 caiwu && groupadd -g 2003
jishu
[root@localhost ~]# groupadd -g 2001
zonghe
3、建立jerry、kylin、tsengia、obama使用者,其中的kylin使用者帳號在2023年12月30日後失效
[root@localhost ~]# useradd 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 cucci
[root@localhost ~]# usermod -s /sbin/nologin cucci
6、將handy、cucci等使用者新增到jishu組內
[root@localhost ~]# gpasswd -m handy,cucci jishu
7、將上述的所有使用者均要求加入到guanli組內
[root@localhost ~]# groupadd guanli
[root@localhost ~]# gpasswd -m jerry,kylin,tsengia,obama,handy,cucci guanli
8、將zonghe組內的obama使用者刪除
[root@localhost ~]# gpasswd -d obama zonghe
正在將使用者「obama」從「zonghe」組中刪除
9、為jerry使用者設定密碼為「123456
」(使用普通方法)
為cucci使用者設定密碼為「redhat」(使用--stdin方法)
[root@localhost ~]# passwd
jerry
更改使用者 jerry 的密碼 。
新的 密碼:
無效的密碼: 密碼少於
8個字元
重新輸入新的 密碼:
passwd
:所有的身份驗證令牌已經成功更新。
[root@localhost ~]# echo
"redhat
" |passwd --stdin cucci
更改使用者 cucci 的密碼 。
passwd
:所有的身份驗證令牌已經成功更新。
10、將jerry使用者鎖定,並檢視鎖定狀態
[root@localhost ~]# usermod -l jerry
[root@localhost ~]# passwd -s jerry
jerry lk
2019-07-30
099999
7 -1
(密碼已被鎖定。)
11、開啟兩個xshell視窗,通過(who 或者 w
)命令檢視連線狀態,並通過fuser殺掉其中乙個
[root@localhost ~]# w
[root@localhost ~]# fuser -k /dev/pts/2
12、檢視cucci使用者,屬於那些組,並檢視其詳細資訊
[root@localhost ~]# groups
cucci
cucci : cucci jishu guanli
[root@localhost ~]# finger cucci
login: cucci name:
directory: /home/cucci shell: /sbin/nologin
never logged in.
no mail.
no plan.
13、手工建立賬號student
[root@localhost ~]# vi /etc/passwd
student:x:
1014:1014::/home/student:/bin/bash
[root@localhost ~]# vi /etc/shadow
student::
18107:0:99999:7
:::[root@localhost ~]# vi /etc/group
student:x:
1014
:[root@localhost ~]# mkdir /home/student
[root@localhost ~]# cd /etc/skel/[root@localhost skel]#
ls -a | cp .b* /home/student/
14、設定許可權及歸屬:
/guanli目錄屬組設為guanli
/guanli/zonghe目錄的屬組設為zonghe
/guanli/jishu目錄的屬組設為jishu
設定3個目錄都是禁止其他使用者訪問的許可權
[root@localhost ~]# chown :guanli /guanli &&chown :zonghe /guanli/zonghe/ &&chown :jishu /guanli/jishu/ && chmod -r o-rwx /guanli/
15、建立公共目錄/ceshi
允許技術組內的所有使用者讀取、寫入、執行檔案
禁止其他使用者讀、寫、執行
[root@localhost ceshi]#
chown :jishu /ceshi/[root@localhost ceshi]#
chmod g=rwx,o-rwx /ceshi/
16、清除jerry使用者密碼
[root@localhost ceshi]#
passwd -d jerry
清除使用者的密碼 jerry。
passwd
: 操作成功
17、鎖定cucci使用者密碼並檢視狀態
[root@localhost ceshi]#
passwd -l cucci
鎖定使用者 cucci 的密碼 。
passwd
: 操作成功
[root@localhost ceshi]#
passwd -s cucci
cucci lk
2019-07-30
099999
7 -1
(密碼已被鎖定。)
18、修改obama使用者的uid為8888
[root@localhost ceshi]# usermod -u 8888
obama
19、通過passwd命令修改kylin使用者的最長密碼使用期限為60天
[root@localhost ceshi]#
passwd -x 60
kylin
調整使用者密碼老化資料kylin。
passwd
: 操作成功
20、通過id groups
finger等命令檢視使用者handy資訊
[root@localhost ceshi]#
idhandy
uid=1012(handy) gid=1012(handy) 組=1012(handy),2003(jishu),2006
(guanli)
[root@localhost ceshi]#
groups
handy
handy : handy jishu guanli
[root@localhost ceshi]# finger handy
login: handy name:
directory: /home/handy shell: /bin/bash
never logged in.
no mail.
no plan.
Linux練習例題六(附答案)
硬碟分割槽 配置兩個raid1 root localhost mdadm c dev md11 l 1 n 2 dev sdb1 dev sdb2 v root localhost mdadm c dev md12 l 1 n 2 dev sdb3 dev sdb4 將兩個raid1合成raid0 ...
蛇形填數字 附書上例題答案
題目來自劉汝佳編著的 演算法競賽入門經典 第二版 題目描述 在 n n 方陣中填入 1,2,3,n n 要求填成蛇形。例如,n 4 時方陣為 10 11 12 1 9 16 13 2 8 15 14 3 7 6 5 4 我的 c includeusing namespace std intmain ...
Linux基礎命令練習題一(附答案)
1 請用命令查出ifconfig命令程式的絕對路徑 root localhost which ifconfig usr sbin ifconfig 2 請用命令展示以下命令哪些是內部命令,哪些是外部命令?cd pwd ls ifconfig du root localhost type cd cd ...