用户管理练习

用户管理练习:

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

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

liulian

root

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

[root@localhost ~]# last | head -1 |cut -d’ ‘ -f1 |xargs id

uid=0(root) gid=0(root) groups=0(root)

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

[root@localhost ~]# cat /etc/passwd | cut -d: -f7|sort|uniq -c

4 /bin/bash

1 /bin/sync

1 /sbin/halt

31 /sbin/nologin

1 /sbin/shutdown

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

[root@localhost ~]# ls /etc |grep “\.conf$” |tr ‘a-z’ ‘A-Z’ |tee /tmp/etc.conf

ASOUND.CONF

AUTOFS.CONF

AUTOFS_LDAP_AUTH.CONF

CGCONFIG.CONF

CGRULES.CONF

CGSNAPSHOT_BLACKLIST.CONF

CHRONY.CONF

DRACUT.CONF

E2FSCK.CONF

FPRINTD.CONF

FUSE.CONF

GEOIP.CONF

HOST.CONF

IDMAPD.CONF

KDUMP.CONF

KRB5.CONF

LD.SO.CONF

LIBAUDIT.CONF

LIBUSER.CONF

LOCALE.CONF

LOGROTATE.CONF

MAN_DB.CONF

MKE2FS.CONF

NFS.CONF

NFSMOUNT.CONF

NSSWITCH.CONF

NTP.CONF

ODDJOBD.CONF

PBM2PPA.CONF

PNM2PPA.CONF

REQUEST-KEY.CONF

RESOLV.CONF

RSYNCD.CONF

RSYSLOG.CONF

SESTATUS.CONF

SOS.CONF

SUDO.CONF

SUDO-LDAP.CONF

SYSCTL.CONF

TCSD.CONF

TROLLTECH.CONF

UPDATEDB.CONF

USB_MODESWITCH.CONF

VCONSOLE.CONF

WVDIAL.CONF

YUM.CONF

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

ifconfig | head -n2 | tail -n1 | cut -d ” ” -f10

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

ls -a /etc/*.conf | tr ‘a-z’ ‘A-Z’ > /tmp/etc.conf

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

[root@localhost ~]# ls /var | wc -w

22

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

sort -rn -t “:” -k3 /etc/group | head -n 10 | cut -d “:” -f1

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

[root@localhost ~]# diff /etc/fstab /etc/issue > /tmp/etc.text

[root@localhost ~]# cat /tmp/etc.text

0a1,2

> \S

> Kernel \r on an \m

2,11d3

< #

< # /etc/fstab

< # Created by anaconda on Thu Apr 5 03:45:40 2018

< #

< # Accessible filesystems, by reference, are maintained under ‘/dev/disk’

< # See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info

< #

< /dev/mapper/centos-root /            xfs   defaults    0 0

< UUID=ed702200-6991-4153-9fa8-c3f4c7958b12 /boot          xfs   defaults    0 0

< /dev/mapper/centos-swap swap          swap  defaults    0 0

[root@localhost ~]# ls -ld /tmp/etc.text

-rw-r–r–. 1 root root 523 May 28 03:57 /tmp/etc.text

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

  (1)、创建组distro,其GID为2016;

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

[root@localhost ~]# 

  (2)、创建用户mandriva, 其ID号为1005;基本组为distro;

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

[root@localhost ~]# 

  (3)、创建用户mageia,其ID号为1100,家目录为/home/linux;

[root@localhost ~]# useradd -u 100 -d /home/linux mageia

[root@localhost ~]# id mageia

uid=100(mageia) gid=2017(mageia) groups=2017(mageia)

  (4)、给用户mageia添加密码,密码为mageedu;

[root@localhost ~]# 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.

  (5)、删除mandriva,但保留其家目录;

[root@localhost ~]# id mandriva

uid=1005(mandriva) gid=2016(distro) groups=2016(distro)

[root@localhost ~]# userdel mandriva

[root@localhost ~]# 

  (6)、创建用户slackware,其ID号为2002,基本组为distro,附加组peguin;

有问题

[root@localhost ~]# useradd -u 2002 -g distro -G peguin slackware

useradd: group ‘peguin’ does not exist

[root@localhost ~]# 

  (7)、修改slackware的默认shell为/bin/tcsh;

usermod -s /bin/tcsh slackware

  (8)、为用户slackware新增附加组admins;

groupadd admins

usermod -G peguin,admins -a slackware

 

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

(0)
laolian2018laolian2018
上一篇 2018-05-28
下一篇 2018-05-28

相关推荐

  • Day06笔记总结:grep与正则表达式

    Title: grep与正则表达式
    Date: 2018-04-08
    Author: Alvin

    Linux笔记 2018-04-08
  • Linux运维命令以及概念整理总结(4)

    1、grep
    2、正则表达式
    3、扩展正则表达式
    4、vim文本编辑工具

    2018-04-14
  • 编译安装软件

    编译安装httpd软件 1先配置yum源 准备工作:把所有yum源改成本地光盘 [root@centos7 etc]#find *yum*(查找yum配置目录) 1.[root@centos6 ~]#df .[root@centos6 ~]#cd /misc/cd/ (神奇文件自动挂载)光盘 [root@centos7 yum.repos.d]#ls(说明还…

    Linux笔记 2018-04-22
  • N31第三周

    1、列出当前系统上所有已经登录的用户的用户名,注意:同一个用户登录多次,则只显示一次即可。 who | cut -d ‘ ‘ -f1 | sort -u 2、取出最后登录到当前系统的用户的相关信息。  w |cut -d ‘ ‘ -f1 |tail -1 |xargs id 3、取出当前系统上被用户当作其默认shell的最多的那个shell。 cat /et…

    Linux笔记 2018-07-16
  • sed作业

    编程基础 程序:指令+数据程序编程风格:过程式:以指令为中心,数据服务于指令对象式:以数据为中心,指令服务于数据shell程序:提供了编程能力,解释执行 程序的执行方式 计算机:运行二进制指令编程语言:低级:汇编高级:编译:高级语言–>编译器–>目标代码 java,C#解释:高级语言–>解释器&#8211…

    2018-04-15