您好,登錄后才能下訂單哦!
[root@centos7 etc]# ls -d /etc/[^[:alpha:]][:alpha:]*
[root@centos7 etc]# mkdir /tmp/mytest1 && cp -a /etc/[p]*[^[:digit:]] /tmp/mytest1/
[root@centos7 etc]# ls /tmp/mytest1/ #查看結(jié)果
pam.d passwd- pinforc plymouth pnm2ppa.conf postfix prelink.conf.d profile protocols purple
passwd pbm2ppa.conf pki pm popt.d ppp printcap profile.d pulse python
[root@centos7 etc]# tr 'a-z' 'A-Z' < /etc/issue >/tmp/issue.out
[root@centos7 etc]# cat /tmp/issue.out 查看內(nèi)容
\S
KERNEL \R ON AN \M
(1)、創(chuàng)建組distro,其GID為2019;
[root@centos7 etc]# groupadd distro -g 2019
[root@centos7 etc]# getent group distro #驗(yàn)證distro的GID
distro:x:2019:
(2)、創(chuàng)建用戶(hù)mandriva, 其ID號(hào)為1005;基本組為distro;
[root@centos7 etc]# useradd mandriva -u 1005 -g distro
[root@centos7 etc]# id mandriva #驗(yàn)證mandriva的UID號(hào)和基本組
uid=1005(mandriva) gid=2019(distro) groups=2019(distro)
(3)、創(chuàng)建用戶(hù)mageia,其ID號(hào)為1100,家目錄為/home/linux;
[root@centos7 etc]# useradd mageia -u 1100 -d /home/linux
[root@centos7 etc]# getent passwd mageia #驗(yàn)證結(jié)果
mageia:x:1100:1100::/home/linux:/bin/bash
(4)、給用戶(hù)mageia添加密碼,密碼為mageedu,并設(shè)置用戶(hù)密碼7天后過(guò)期
[root@centos7 etc]# echo "mageedu" | passwd mageia --stdin -x 7
[root@centos7 etc]# getent shadow mageia #驗(yàn)證結(jié)果
mageia:!!:18308:0:7:7:::
(5)、刪除mandriva,但保留其家目錄;
[root@centos7 etc]# userdel mandriva
[root@centos7 etc]# ls /home/ #驗(yàn)證結(jié)果 mandriva目錄依舊存在
diyoujia linux mandriva slackware test
(6)、創(chuàng)建用戶(hù)slackware,其ID號(hào)為2002,基本組為distro,附加組peguin;
[root@centos7 etc]# useradd slackware -u 2002 -g distro -G peguin
[root@centos7 etc]# id slackware #驗(yàn)證結(jié)果
uid=2002(slackware) gid=2019(distro) groups=2019(distro),2020(peguin)
(7)、修改slackware的默認(rèn)shell為/bin/tcsh;
[root@centos7 etc]# chsh slackware -s /bin/tcsh
[root@centos7 etc]# getent passwd slackware #驗(yàn)證結(jié)果
slackware:x:2002:2019::/home/slackware:/bin/tcsh
(8)、為用戶(hù)slackware新增附加組admins;
[root@centos7 etc]# usermod slackware -aG admins
[root@centos7 etc]# id slackware #驗(yàn)證結(jié)果
uid=2002(slackware) gid=2019(distro) groups=2019(distro),2020(peguin),2021(admins)
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。