第三週做業

1.顯示/etc目錄下,以非字母開頭,後面跟了一個字母以及其餘任意長度任意字符的文件或目錄。
因/etc中沒有匹配文件,自行建立能夠匹配的字符文件,進行檢查
第三週做業
[root@centos7 ~]#ls -d /etc/[^[:alpha:]][:alpha:]*linux

2.複製/etc目錄下全部以p開頭,以非數字結尾的文件或目錄到/tmp/mytest1目錄中。
自行建立能夠有區別的目錄 用ls命令檢查,而後再刪除建立的目錄,再進行cp
第三週做業git

[root@centos7 ~]#ls -d /etc/p[^[:digit:]]
[root@centos7 ~]#mkdir /tmp/mytest1
[root@centos7 ~]#cp -r /etc/p
[^[:digit:]] /tmp/mytest1shell

3.將/etc/issue文件中的內容轉換爲大寫後保存至/tmp/issue.out文件中。
第三週做業centos

[root@centos7 ~]#tr '[:lower:]' '[:upper:]' < /etc/issue > /tmp/issue.outide

4.請總結描述用戶和管理類命令的使用方法並完成如下練習:
(1)建立組distro,其GID爲2019
第三週做業ui

[root@centos7 ~]#groupadd distro
[root@centos7 ~]#groupmod -g 2019 distro
(2)建立用戶mandriva,其ID號爲1005;基本組爲distro
第三週做業
[root@centos7 ~]#useradd -u 1005 -g distro mandriva
(3)建立用戶mageia,其ID號爲1100,家目錄爲/home/linux
第三週做業
[root@centos7 ~]#useradd -u 1100 -d /home/linux mageia
(4)給用戶mageia添加密碼,密碼爲mageedu,並設置用戶密碼7天后過時
第三週做業
[root@centos7 ~]#echo mageedu|passwd --stdin mageia
[root@centos7 ~]#passwd -x 7 mageia
[root@centos7 ~]#chage -l mageia
(5)刪除mandriva,但保留其家目錄
第三週做業
[root@centos7 ~]#userdel mandriva
(6)建立用戶slackware,其ID號爲2002,基本組爲distro,附加組爲peguin
第三週做業加密

[root@centos7 ~]#groupadd peguin
[root@centos7 ~]#useradd -u 2002 -g distro -G peguin slackware
(7)修改slackware默認shell爲/bin/tcsh
第三週做業
[root@centos7 ~]#usermod -s /bin/tcsh slackware
(8)爲用戶slackware新增附加組admins
第三週做業
[root@centos7 ~]#groupadd admins
[root@centos7 ~]#usermod -aG admins slackwarecentos7

相關文章
相關標籤/搜索