8.1-用户和组(作业篇)

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

[root@localhost ~]# tr a-z A-Z </etc/issue > /tmp/issue.out
[root@localhost ~]# cat /tmp/issue.out 
CENTOS RELEASE 6.8 (FINAL)
KERNEL \R ON AN \M

2、将当前系统登录用户的信息转换为大写后保存至/tmp/who.out文件中。

[root@localhost ~]# who | tr a-z A-Z > /tmp/who.out
[root@localhost ~]# cat /tmp/who.out 
ROOT     TTY1         2016-07-21 03:43
ROOT     PTS/0        2016-07-21 03:45 (10.1.252.7)

3、一个linux用户给root发邮件,要求邮件标题为”help”,邮件正文如下:Hello, I am 用户名,the system version is here,pleasehelp

 me to check it ,thanks!操作系统版本信息。

普通用户:
[cej@localhost ~]$ echo "Hello,i am `whoami`,the system version is here,pleasehelp me to check it ,thanks! `uname -r`"| mail -s Hello root
root:
[root@localhost ~]# mail
Heirloom Mail version 12.4 7/29/08.  Type ? for help.
"/var/spool/mail/root": 1 message 1 new
>N  1 cej@localhost.locald  Thu Jul 21 03:53  18/687   "Hello"
& 1
Message  1:
From cej@localhost.localdomain  Thu Jul 21 03:53:17 2016
Return-Path: <cej@localhost.localdomain>
X-Original-To: root
Delivered-To: root@localhost.localdomain
Date: Thu, 21 Jul 2016 03:53:17 +0800
To: root@localhost.localdomain
Subject: Hello
User-Agent: Heirloom mailx 12.4 7/29/08
Content-Type: text/plain; charset=us-ascii
From: cej@localhost.localdomain
Status: R
Hello,i am cej,the system version is here,pleasehelp me to check it ,thanks! 2.6.32-642.el6.x86_64

4、将/root/下文件列表,显示成一行,并文件名之间用空格隔开。

[root@localhost ~]# ls /root/
anaconda-ks.cfg  install.log  install.log.syslog  公共的  模板  视频  图片  文档  下载  音乐  桌面

ls虽然输出至屏幕显示在一行,观察输出至文件得知实际上是分行显示

[root@localhost ~]# ls /root/ > /tmp/root.txt
[root@localhost ~]# cat /tmp/root.txt 
anaconda-ks.cfg
install.log
install.log.syslog
公共的
模板
视频
图片
文档
下载
音乐
桌面

[root@localhost ~]# ls /root/|tr ["\n"] ["\040"]
anaconda-ks.cfg install.log install.log.syslog 公共的 模板 视频 图片 文档 下载 音乐 桌面 [root@localhost ~]#

5、file1文件的内容为:”1 2 3 4 5 6 7 8 9 10” 计算出所有数字的总和。

[root@localhost ~]# cat file1 
1 2 3 4 5 6 7 8 9 10
[root@localhost ~]# tr ' ' '+' <file1 
1+2+3+4+5+6+7+8+9+10
[root@localhost ~]# tr ' ' '+' <file1 |bc
55

6、删除Windows文本文件中的'^M'字符


[root@localhost ~]# cat -A windows.txt 
a^M$
a^M$
a^M$
a^M$
a^M$
[root@localhost ~]# tr -d '\015' <file1 
1 2 3 4 5 6 7 8 9 10
[root@localhost ~]# tr -d '^M' <file1 
1 2 3 4 5 6 7 8 9 10

 

7、处理字符串“xt.,l 1 jr#!$mn2 c*/fe3 uz4”,只保留其中的数字和空格。

[root@localhost ~]# echo 'xt.,l 1 jr#!$mn2 c*/fe3 uz4' | tr -cd '[0-9][ ]'
 1 2 3 4

 

8、将PATH变量每个目录显示在独立的一行。

[root@localhost ~]# echo $PATH | tr ':' '\n'
/usr/lib64/qt-3.3/bin
/usr/local/sbin
/usr/local/bin
/sbin
/bin
/usr/sbin
/usr/bin
/root/bin

9、删除指定文件的空行。

[root@localhost ~]# cat line.txt 
aaaaaaaaaaaa

bbbbbbbbbbbb

vvvvvvvvvvvv
[root@localhost ~]# cat line.txt| tr -s '\n'  
aaaaaaaaaaaa
bbbbbbbbbbbb
vvvvvvvvvvvv

10、将文件中每个单词(字母)显示在独立的一行,并无空行。

[root@localhost ~]# cat /etc/issue | tr -s ' ' '\n'
CentOS
release
6.8
(Final)
Kernel
\r
on
an
\m

11、创建用户gentoo,附加组为bin和root,默认shell为/bin/csh,注释信息为"Gentoo Distribution"

[root@localhost ~]# groups bin
bin : bin daemon sys
[root@localhost ~]# groups root
root : root
[root@localhost ~]# useradd -s /bin/csh -c "Gentoo Distribution" -G bin,root gentoo
[root@localhost ~]# tail -1 /etc/passwd
gentoo:x:501:501:Gentoo Distribution:/home/gentoo:/bin/csh
[root@localhost ~]# grep -E "(^bin|^root)" /etc/group
root:x:0:gentoo
bin:x:1:bin,daemon,gentoo

2、创建下面的用户、组和组成员关系
(1)名字为admins 的组
(2)用户natasha,使用admins 作为附属组
(3)用户harry,也使用admins 作为附属组
(4)用户sarah,不可交互登录系统, 且不是admins 的成员,natasha, harry, sarah密码都是centos

[root@localhost ~]# groupadd admins
[root@localhost ~]# tail -1 /etc/group
admins:x:502:
[root@localhost ~]# useradd -G admins natasha
[root@localhost ~]# useradd -G admins harry
[root@localhost ~]# tail -3 /etc/group
admins:x:502:natasha,harry
natasha:x:503:
harry:x:504:
[root@localhost ~]# useradd -s /sbin/nologin sarah
[root@localhost ~]# echo "centos" | passwd --stdin natasha
更改用户 natasha 的密码 。
passwd: 所有的身份验证令牌已经成功更新。
[root@localhost ~]# echo "centos" | passwd --stdin harry
更改用户 harry 的密码 。
passwd: 所有的身份验证令牌已经成功更新。
[root@localhost ~]# echo "centos" | passwd --stdin sarah
更改用户 sarah 的密码 。
passwd: 所有的身份验证令牌已经成功更新。

 


1、创建testuser uid 1234,主组:bin,辅助组:root,ftp,shell:/bin/csh home:/testdir/testuser

[root@localhost ~]# mkdir /testdir
[root@localhost ~]# useradd testuser -u 1234 -g bin -G root,ftp -s /bin/csh -d /testdir/testuser

2、修改testuser uid:4321,主组:root,辅助组:nobody,loginname:test,home:/home/test 家数据迁移

[root@localhost ~]# usermod -u 4321 -g root -G nobody -l test -md /home/test testuser 
[root@localhost ~]# id test
uid=4321(test) gid=0(root) 组=0(root),99(nobody)
[root@localhost ~]# getent passwd test
test:x:4321:0::/home/test:/bin/csh

3、批量创建帐号:user1…user10
(1)、uid:3000-3009,shell:/bin/csh,home:/testdir/username
(2)、passwd:usernamepass
(3)、注意家目录相关配置,使用户正常登录

[root@localhost ~]# cat user.txt 
user1:!!:3000:3000::/testdir/user1:/bin/csh
user2:!!:3001:3001::/testdir/user2:/bin/csh
user3:!!:3002:3002::/testdir/user3:/bin/csh
user4:!!:3003:3003::/testdir/user4:/bin/csh
user5:!!:3004:3004::/testdir/user5:/bin/csh
user6:!!:3005:3005::/testdir/user6:/bin/csh
user7:!!:3006:3006::/testdir/user7:/bin/csh
user8:!!:3007:3007::/testdir/user8:/bin/csh
user9:!!:3008:3008::/testdir/user9:/bin/csh
user10:!!:3009:3009::/testdir/use10:/bin/csh
[root@localhost ~]# cat passwd.txt 
user1:user1pass
user2:user2pass
user3:user3pass
user4:user4pass
user5:user5pass
user6:user6pass
user7:user7pass
user8:user8pass
user9:user9pass
user10:user10pass
[root@localhost ~]# newuser user.txt
[root@localhost ~]# cat passwd.txt | chpasswd

[root@localhost ~]# tail -10 /etc/passwd
user1:x:3000:3000::/testdir/user1:/bin/csh
user2:x:3001:3001::/testdir/user2:/bin/csh
user3:x:3002:3002::/testdir/user3:/bin/csh
user4:x:3003:3003::/testdir/user4:/bin/csh
user5:x:3004:3004::/testdir/user5:/bin/csh
user6:x:3005:3005::/testdir/user6:/bin/csh
user7:x:3006:3006::/testdir/user7:/bin/csh
user8:x:3007:3007::/testdir/user8:/bin/csh
user9:x:3008:3008::/testdir/user9:/bin/csh
user10:x:3009:3009::/testdir/use10:/bin/csh
[root@localhost ~]# tail -10 /etc/shadow
user1:$6$9fYDi/ka1/Z/$NrWYcHvh4zvoaemMPU1GwNBNwe94LoS.bTJzcTYZkMK6LAjUBp4PkY9WnKn8/0MPtXEdnMgHwCYe.u0g/7Qpy/:17002:0:99999:7:::
user2:$6$S5.GJ/nwdsxNj2A9$J0Eb1QwtgoxzuxkRf4Pr/e2lF/.E6T111O1s9.VpLfS78HZMKocuoS3F2Vw3v0ilmPJZFwyIzhCK8O7ZzQLk2/:17002:0:99999:7:::
user3:$6$sZs15/qhGLD$3I0n8vPYACVYEuDcypd/veuTXGsay7U6DYKq6ucKHcB.LEG0M3z5G1umy3GwlCth9RQWACmrOr/bcfrIRalUj1:17002:0:99999:7:::
user4:$6$rBLHbzMoIA/d$Scv/W4M1rh4L7os43BQygRVaNeLgAQLZ5rcmShOiSzFiAAu3Poe6HpXLpHf7WcxD5OjY6Ae.b0EsDI6RI3z9c1:17002:0:99999:7:::
user5:$6$r6wYO/ny1E31$mhpih1Wy56xk1OR6lXFTOn1sOUhazoTy5va7LXmKDRnFxe8cO5be.VLVWXcO6sDFZWl1i4DydIRzVLvirB0A01:17002:0:99999:7:::
user6:$6$Xbdfi/6pUJI/tX$EzjSufBp6L669jc.fFMMmGIf6SZg5IHFQWbBtRBd8gcMgwiAn6mQAYuM2gbwHnVBwpozLYsLESMAmB8tOL58U1:17002:0:99999:7:::
user7:$6$A38dq/2fvTr/$NfCir91Igb03gseViQm0UTY4CNZdnfkLgPcit2Q9Ey643wmzNc1V3hSBJa0eTGZCRWCpQOQ.1H8zVlsW0Er5I/:17002:0:99999:7:::
user8:$6$IyWsW/bB1$bpcadfLAT8zybea0o.JTnHo4D3XlaYCQP2uaoKzIPW0dDqBXIh86ewksdZHM4EADqPjcQg.yOyk3ktziBIJYc0:17002:0:99999:7:::
user9:$6$N1jQs/D42PH$l/aR0nCJX3i4s5zoKMgLN1U.HTqIlR/YbFwY5YqTVFZBrlTKiFDE9Z9QvQ3cei3psu.jaX026.pFOgfXOxDM01:17002:0:99999:7:::
user10:$6$YiHga/zg5Qs/zOjS$9uKAP3FMlx/ZwUYyQJHXBrGuor/CaMfk4SUTQkXn1Af08Ler7p6nv55rMSX.oDsJ2FWFCEz/WsOiwYd/oCmn0/:17002:0:99999:7:::

[root@localhost ~]# cp -r /etc/skel/.[^.]* /testdir/use1
[root@localhost ~]# cp -r /etc/skel/.[^.]* /testdir/use2
[root@localhost ~]# cp -r /etc/skel/.[^.]* /testdir/use3
[root@localhost ~]# cp -r /etc/skel/.[^.]* /testdir/use4
[root@localhost ~]# cp -r /etc/skel/.[^.]* /testdir/use5
[root@localhost ~]# cp -r /etc/skel/.[^.]* /testdir/use6
[root@localhost ~]# cp -r /etc/skel/.[^.]* /testdir/use7
[root@localhost ~]# cp -r /etc/skel/.[^.]* /testdir/use8
[root@localhost ~]# cp -r /etc/skel/.[^.]* /testdir/use9
[root@localhost ~]# cp -r /etc/skel/.[^.]* /testdir/use10

[c:\~]$ ssh 
[c:\~]$ Connecting to 10.1.252.66:22...
Connection established.
To escape to local shell, press 'Ctrl+Alt+]'.
[user1@localhost ~]$ 
正常登陆!










原创文章,作者:M20-1--孔祥文,如若转载,请注明出处:http://www.178linux.com/27179

(0)
M20-1--孔祥文M20-1--孔祥文
上一篇 2016-08-04
下一篇 2016-08-04

相关推荐

  • Linux系统网络属性管理之bond

    Bonding 就是将多块网卡绑定同一IP地址对外提供服务,可以实现高可用或者负载均衡。当然,直接给两块网卡设置同一IP地址是不可能的。通过bonding,虚拟一块网卡对外提供连接,物理网卡的被修改为相同的MAC地址。 Bonding的工作模式 •Mode 0 (balance-rr) 轮转(Round-robin)策略:从头到尾顺序的在每一个slave接口…

    Linux干货 2016-09-18
  • 大话命令之–ss

    大话命令之—ss ss是Socket Statistics的缩写。顾名思义,ss命令可以用来获取socket统计信息,它可以显示和netstat类似的内容。 优势: (1)显示更多更详细的有关TCP和连接状态的信息,(2)比netstat更快速更高效。 1 格式 格式:ss    [option]… &nbs…

    Linux干货 2017-05-15
  • linux下手工创建新用户

    当我们要创建一个用户时,通常使用useradd命令就可以自动创建了一个用户;实际上,在linux下,一切皆文件,设置好几个文件,也是可以创建出一个用户: 文件如下: /etc/passwd  :用户 /etc/shadow  :密码 /home/username:用户家目录 /etc/group:用户组 /etc/skel/*: &nbs…

    Linux干货 2015-03-30
  • 马哥教育网络班21期+第2周课程练习

    一、Linux文件管理类命令汇总 1、文件的复制命令:cp 复制命令:cp     cp [OPTION]… [-T] SOURCE DEST     cp [OPTION]… SOURCE… DI…

    Linux干货 2016-07-29
  • 三种方案实现tomcat反代服务

    要求: 分别实现这三种架构:    1、nginx + tomcat cluster    2、httpd(proxy_http_module)+tomcat cluster    3、httpd(proxy_ajp_module)+tomcat cluster;   &nbsp…

    2017-07-03
  • Linux磁盘和文件系统管理

      Linux磁盘和文件系统管理.pdf Part.I 磁盘管理 1.cfdisk   #图形化的很简单. 不知道你们用什么 反正我喜欢这个 ^_^ cfdisk – display or manipulate disk partition table 必要参数的具体说明如下: -a用箭头表示选取,而不是以反白表示 …

    Linux干货 2016-04-05

评论列表(1条)

  • 马哥教育
    马哥教育 2016-08-04 15:17

    作业完成的很好,排版也很用心,再接再厉。