第三周_Linux用户基础命令

文本操作命令
用户相关命令

1、列出当前系统上所有已经登录的用户的用户名,注意:同一个用户登录多次,则只显示一次即可。
  [y@localhost ~]$ who|cut -d’ ‘ -f 1 |sort -u
(unknown)
y
2、取出最后登录到当前系统的用户的相关信息。
[y@localhost ~]$ who | tail -1
y        pts/0        2017-12-24 09:43 (192.168.11.236)
3、取出当前系统上被用户当作其默认shell的最多的那个shell。
[y@localhost ~]$ cut -d’:’ -f7 /etc/passwd | uniq -c | sort -n | tail -1
     29 /sbin/nologin
4、将/etc/passwd中的第三个字段数值最大的后10个用户的信息全部改为大写后保存至/tmp/maxusers.txt文件中。
[y@localhost ~]$ cat /etc/passwd|sort -n -k 3 -t:| tail -n 10|tr ‘a-z’ ‘A-Z’>/tmp/etc.conf
5、取出当前主机的IP地址,提示:对ifconfig命令的结果进行切分。
[y@localhost ~]$ ifconfig|grep “inet”
        inet 127.0.0.1  netmask 255.0.0.0
        inet6 ::1  prefixlen 128  scopeid 0x10<host>
        inet 192.168.11.150  netmask 255.255.255.0  broadcast 192.168.11.255
        inet6 fe80::be85:56ff:fe29:78b8  prefixlen 64  scopeid 0x20<link>
        inet6 fd46:ef07:b1aa:0:be85:56ff:fe29:78b8  prefixlen 64  scopeid 0x0<global>
        inet6 fd46:ef07:b1aa::f4c  prefixlen 128  scopeid 0x0<global>
6、列出/etc目录下所有以.conf结尾的文件的文件名,并将其名字转换为大写后保存至/tmp/etc.conf文件中。
[y@localhost ~]$ ls /etc/*.conf|tr ‘a-z’ ‘A-Z’ >/tmp/etc.conf
7、显示/var目录下一级子目录或文件的总个数。
[y@localhost ~]$ ls -a /var|wc -l
26
8、取出/etc/group文件中第三个字段数值最小的10个组的名字。
[y@localhost ~]$ cat /etc/group|sort -n -k3 -t:|tail -10|cut -d: -f1
pulse-access
chrony
libstoragemgmt
colord
unbound
cgred
polkitd
ssh_keys
y
nfsnobody
9、将/etc/fstab和/etc/issue文件的内容合并为同一个内容后保存至/tmp/etc.test文件中。
[y@localhost ~]$ cat /etc/{fstab,issue} >/tmp/etc.test
10、请总结描述用户和组管理类命令的使用方法并完成以下练习:
   (1)、创建组distro,其GID为2016;
    [root@localhost y]# groupadd -g 2016 distro
   (2)、创建用户mandriva, 其ID号为1005;基本组为distro;
    [root@localhost y]# useradd -u 1005 -g distro mandriva
   (3)、创建用户mageia,其ID号为1100,家目录为/home/linux;
    [root@localhost y]# useradd -u 1100 -d /home/linux mageia
   (4)、给用户mageia添加密码,密码为mageedu;
    [root@localhost y]# passwd mageia
   (5)、删除mandriva,但保留其家目录;
    [root@localhost y]# userdel mandriva
   (6)、创建用户slackware,其ID号为2002,基本组为distro,附加组peguin;
    [root@localhost y]# groupadd peguin
[root@localhost y]# useradd -u 2002 -g distro -G peguin slackware
   (7)、修改slackware的默认shell为/bin/tcsh;
    [root@localhost y]# usermod -s /bin/tcsh slackware
   (8)、为用户slackware新增附加组admins;
    [root@localhost y]# groupadd admins
[root@localhost y]# usermod -aG admins slackware

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

(1)
惜锋惜锋
上一篇 2017-12-23
下一篇 2017-12-24

相关推荐

  • grep,find用法-2

    1、显示当前系统上root、fedora或user1用户的默认shell; grep -E “^(root|fedora|user1)>” /etc/passwd | cut -d: -f1,7 [root@bogon Desktop]# grep -E “^(root|fedora|user1)\>” /etc/pass…

    Linux干货 2017-08-04
  • 自建repo软件仓库

    近期主要使用的aliyun的源,主要会用到centos6、zabbix、epel和xen等,由于网络质量不佳,考虑到自建软件仓库 第一步,删除系统自导的源,新建ali.repo,将常用的几个源地址加入 # rm /etc/yum.repos.d/*.repo -fr # vim /etc/yum.repos.…

    Linux干货 2016-05-19
  • 马哥教育网络班21期+第6周课程练习

    请详细总结vim编辑器的使用并完成以下练习题 1、复制/etc/rc.d/rc.sysinit文件至/tmp目录,将/tmp/rc.sysinit文件中的以至少一个空白字符开头的行的行首加#; [root@centos ~]# cp /etc/rc.d/rc.sysinit /tmp/ [root@centos&nbs…

    Linux干货 2016-07-27
  • N26-上海-莫言

    持续更新…

    Linux干货 2016-12-26
  • 二进制安装mysql(mariadb)

    实验环境: ~]# lsb_release -a Distributor ID: CentOSDescription: CentOS Linux release 7.4.1708 (Core)Release: 7.4.1708Codename: Core 去官方下载mariadb: https://downloads.mariadb.org/ 本人将自己的文…

    2018-01-22
  • heartbeat实现高可用集群(2)

    [[ heartbeat v2 + crm ]] 环境 node1 192.168.1.35 node2 192.168.1.36 fip 192.168.1.81 daemon httpd ha web service ip httpd node1&2 # vim ha.cf crm on # cd # rpm -ivh heartbeat-gui…

    Linux干货 2017-11-03