linux用户管理实战

 1、列出当前系统上所有已经登录的用户的用户名,注意:同一个用户登陆多次,则只显示一次即可。

[root@localhost ~]# who |cut -d ‘ ‘ -f1 |sort -u

 2、取出最后登陆到当前系统的用户的相关信息。

[root@localhost ~]# who |tail -1

 3、取出当前系统上被用户当做其默认shell的最多得到那个shell。

[root@localhost ~]# cut -d : -f7 /etc/passwd |uniq -c |sort -n |tail -1
13 /sbin/nologin

 4、将/etc/passwd中点的第三个字段数值最大的后10个用户的信息全部改为大写后保存至/tmp/maxusers.txt文件中。

[root@localhost ~]# cat /etc/passwd |sort -t : -k 3 -n |tail -10 |tr ‘a-z’ ‘A-Z’ > /tmp/maxusers.txt

 5、取出当前主机的IP地址,提示:对ifconfig命令的结果进行切分。

[root@localhost tmp]# ifconfig|grep ‘inet’|grep -v ‘127.0.0.1’|grep -v ‘inet6’|cut -f10 -d ‘ ‘
10.1.12.210

 6、列出/etc目录下所有以.conf结尾的文件的文件名,并将其名字转换为大写后保存至/tmp/etc.conf文件中。

[root@localhost tmp]# ls /etc/*.conf | tr ‘a-z’ ‘A-Z’ >> /tmp/etc.conf

7、显示/var目录下一级子目录或文件的总个数。

[root@localhost tmp]# tree -L 1 /var/ |wc -l
24

8、取出/etc/group文件中第三个字段数最小的10个组的名字。

[root@localhost tmp]# cat /etc/group |sort -t : -k 3 -n | head -10 |cut -d : -f1
root
bin
daemon
sys
adm
tty
disk
lp
mem
kmem

9、将/etc/fstab和/etc/issue文件的内容合并为同一个内容后保存至/tmp/etc.test文件中。

[root@localhost tmp]# cat /etc/fstab /etc/issue >> /tmp/etc.test

10、请总结描述用户和组类管理命令的使用方法并完成以下练习:  

  • 创建组distro,其GID为2016;

[root@localhost tmp]# groupadd distro -g 2016

  • 创建用户mandriva,其ID号为1005;基本组为distro;

[root@localhost tmp]# useradd mandriva -u 1005 -g distro

  •  创建用户mageia,其ID号为1100;家目录为/home/linux;

[root@localhost tmp]# useradd mageia -u 1100 -d /home/linux

  • 给用户mageia添加密码,密码为mageedu;

[root@localhost tmp]# passwd mageia
Changing password for user mageia.
New password:
BAD PASSWORD: The password is shorter than 8 characters
Retype new password:
passwd: all authentication tokens updated successfully.

  • 删除mandriva,但保留其家目录;

[root@localhost tmp]# userdel mandriva
[root@localhost tmp]# ls /home/
linux mandriva xingqitian

  • 创建用户slackware,其ID号为2002,基本组为distro,附加组peguin;

[root@localhost tmp]# groupadd peguin && useradd slackware -u 2002 -g distro -G peguin
[root@localhost tmp]# id slackware
uid=2002(slackware) gid=2016(distro) groups=2016(distro),2017(peguin)

  • 修改slackware的默认shell为/bin/tcsh;

[root@localhost tmp]# usermod -s /bin/tcsh slackware
[root@localhost tmp]# tail -1 /etc/passwd
slackware:x:2002:2016::/home/slackware:/bin/tcsh

  • 为用户slackware新增附加组admins;

[root@localhost tmp]# groupadd admins
[root@localhost tmp]# usermod -a -G admins slackware
[root@localhost tmp]# id slackware
uid=2002(slackware) gid=2016(distro) groups=2016(distro),2017(peguin),2018(admins)

本文来自投稿,不代表Linux运维部落立场,如若转载,请注明出处:http://www.178linux.com/91507

(0)
mgmt.cfgmgmt.cfg
上一篇 2018-02-08
下一篇 2018-02-09

相关推荐

  • Linux 登录趣事

    初入Linux运维,在虚拟机VMware12中装载CentOS6和CentOS7,均带有图形化界面。简单熟悉Linux,发现了一些关于登录的趣事,在此与大家分享。 运行环境:CentOS6和CentOS7 工具:系统里的terminal 登录趣事(以CentOS6为例): (1)自动登录图形化界面 每次启动CentOS6,短暂等待之后便会进入登录界面,然后选…

    2017-07-15
  • 标记2

    标记2

    Linux干货 2018-03-11
  • N25-第七周作业

    第七周 1、创建一个10G分区,并格式为ext4文件系统; (1) 要求其block大小为2048, 预留空间百分比为2, 卷标为MYDATA, 默认挂载属性包含acl; [root@zf ~]# fdisk /dev/sdb Command (m for help): n Command action e extended p primary partit…

    Linux干货 2017-02-24
  • LV+M

    1、查看分区情况: 2、创建sdc分区,并且更改分区类型为8e  3、同样步骤2操作,创建sdd分区 4、创建物理卷pv: 5、查看当前系统的物理卷: 6、创建卷组vg: 7、查看当前系统的卷组: 8、创建逻辑卷lv: 9、查看当前系统的逻辑卷: 10、创建文件系统ext4: 11、创建目录/mnt/lv1并且挂载: 12、扩展物理卷: 13、扩展…

    Linux干货 2016-09-19
  • web service之http协议

    一.概述 1.web应用的核心是http协议(HyperText Transfer Protocol),http协议的由两部分组成,客户端程序和服务器端程序,通过交换http报文进行会话。web页面则是由对象(也叫资源)组成的,对象直白的说就是一个个的文件,而这些对象可以通过URL引用,URL由两部分组成,存放对象的主机名和对象的文件路径,而这些对象都存储在…

    Linux干货 2016-11-03
  • lvs负载集群实验(实现wordpress)

    项目要求: (1) lvs 调度两台 nginx+php-fpmreal-server,采用 dr 模型,调度算法为 rr (2) mariadb 为 real-server 提供数据库,nfs 挂载至 2 台 real-server 提供文件服务 (3) 由于实验环境地址冲突将VIP替换为172.18.60.60 实施步骤: 一、配置NFS+mariadb…

    2017-05-10