linux 基础命令(四)

1、复制/etc/skel目录为/home/tuser1,要求/home/tuser1及其内部文件的属组和其他用户均没有任何访问权限。

[root@localhost home]# cp -r /etc/skel/ /home/tuser1
[root@localhost home]# chmod 700 tuser1/
[root@localhost home]# ll -d tuser1
/drwx------ 2 root root 59 10月 16 18:48 tuser1/

2、编辑/etc/group文件,添加组Hadoop。

[root@localhost home]# tail -1 /etc/grouphadoop:x:1001:

3、手动编辑/etc/passwd文件,增加一行,添加用户Hadoop,其基本组为ID为Hadoop的组ID号,其家目录为/home/hadoop.

[root@localhost home]# cp -r /etc/skel/ /home/hadoop
[root@localhost home]# vim /etc/passwd
[root@localhost home]# tail -1 /etc/passwdhadoop:x:1001:1001::/home/hadoop:/bin/bash
[root@localhost home]# su - hadoop
[hadoop@localhost ~]$ id hadoop
uid=1001(hadoop) gid=1001(hadoop) 组=1001(hadoop)

4、复制/etc/skel目录为/home/hadoop,要求修改Hadoop的目录的属组和其他用户没有任何访问权限。

[root@localhost home]# ll -d /home/hadoop/
drwxr-xr-x 2 root root 59 10月 16 18:54 /home/hadoop/
[root@localhost home]# chown -R hadoop.hadoop /home/hadoop/
[root@localhost home]# chmod -R 700 /home/hadoop/
[root@localhost home]# ll -d /home/hadoop/
drwx------ 2 hadoop hadoop 59 10月 16 18:54 /home/hadoop/

5、修改/home/hadoop目录及其内部所有文件的属主为Hadoop,属组为Hadoop

[root@localhost home]# chown -R hadoop.hadoop /home/hadoop/
[root@localhost home]# ll -a /home/hadoop/
总用量 12
drwx------  2 hadoop hadoop  59 10月 16 18:54 .
drwxr-xr-x. 6 root   root    56 10月 16 18:54 ..
-rwx------  1 hadoop hadoop  18 10月 16 18:54 .bash_logout
-rwx------  1 hadoop hadoop 193 10月 16 18:54 .bash_profile
-rwx------  1 hadoop hadoop 231 10月 16 18:54 .bashrc

6、显示/proc/meminfo文件中以大写或小写s开头的行;用两种方式

[root@localhost home]# egrep "^[Ss]" /proc/meminfo
 SwapCached:            0 kB
 SwapTotal:       2097148 kB
 SwapFree:        2097148 kB
 Shmem:              6836 kB
 Slab:              35932 kB
 SReclaimable:      14572 kB
 SUnreclaim:        21360 kB
 [root@localhost home]# grep -i "^s" /proc/meminfo
  SwapCached:            0 kB
  SwapTotal:       2097148 kB
  SwapFree:        2097148 kB
  Shmem:              6836 kB
  Slab:              35932 kB
  SReclaimable:      14572 kB
  SUnreclaim:        21360 kB

7、显示/etc/passwd文件中其默认登录shell为/sbin/nologin的用户;

[root@localhost home]# cut -d: -f1,7 /etc/passwd | grep "/sbin/nologin"bin:/sbin/nologin
daemon:/sbin/nologin
adm:/sbin/nologin
lp:/sbin/nologin
mail:/sbin/nologin
operator:/sbin/nologin
games:/sbin/nologin
ftp:/sbin/nologin
nobody:/sbin/nologin
avahi-autoipd:/sbin/nologin
systemd-bus-proxy:/sbin/nologin
systemd-network:/sbin/nologin
dbus:/sbin/nologin
polkitd:/sbin/nologin
abrt:/sbin/nologin
tss:/sbin/nologin
postfix:/sbin/nologin
sshd:/sbin/nologin

8、显示/etc/passwd文件中默认登录shell为/bin/bash的用户;

[root@localhost home]# cut -d: -f1,7 /etc/passwd | grep "/bin/bash"
root:/bin/bash
baoman:/bin/bash
hadoop:/bin/bash

9、找出/etc/passwd文件中的一位数两位数;

[root@localhost home]# grep "\<[0-9]\{1,2\}\>" /etc/passwd
root:x:0:0:root:/root:/bin/bash
bin:x:1:1:bin:/bin:/sbin/nologin
daemon:x:2:2:daemon:/sbin:/sbin/nologin
adm:x:3:4:adm:/var/adm:/sbin/nologin
lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin
sync:x:5:0:sync:/sbin:/bin/sync
shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown
halt:x:7:0:halt:/sbin:/sbin/halt
mail:x:8:12:mail:/var/spool/mail:/sbin/nologin
operator:x:11:0:operator:/root:/sbin/nologin
games:x:12:100:games:/usr/games:/sbin/nologin
ftp:x:14:50:FTP User:/var/ftp:/sbin/nologin
nobody:x:99:99:Nobody:/:/sbin/nologin
dbus:x:81:81:System message bus:/:/sbin/nologin
tss:x:59:59:Account used by the trousers package to sandbox the tcsd daemon:/dev/null:/sbin/nologin
postfix:x:89:89::/var/spool/postfix:/sbin/nologin
sshd:x:74:74:Privilege-separated SSH:/var/empty/sshd:/sbin/nologin

10、显示/boot/grub/grub.conf中至少一个空白字符开头的行;

[root@localhost grub2]# egrep "^[[:space:]]+" /boot/grub2/grub.cfg

11、显示/etc/rc.d/rc.sysinit文件中以#开头,后面跟至少一个空白字符,而后又有至少一个非空白字符的行;

[root@localhost grub2]# egrep "^#[[:space:]]+[^[:space:]]+" /boot/grub2/grub.cfg
# DO NOT EDIT THIS FILE# It is automatically generated by grub2-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
# Fallback normal timeout code in case the timeout_style feature is# unavailable.
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change# the 'exec tail' line above.

12、打出netstat -ant命令结果中以'LISTEN',后或跟空白字符结尾的行;

[root@localhost grub2]# netstat -tan | grep "\<LISTEN[[:space:]]*"
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN     
tcp        0      0 127.0.0.1:25            0.0.0.0:*               LISTEN     
tcp6       0      0 :::22                   :::*                    LISTEN     
tcp6       0      0 ::1:25                  :::*                    LISTEN

13、添加用户bash,testbash,basher,nologin(此一个用户shell为/sbin/nologin),而后找出当前系统上用户名和默认shell相同的用户的信息;

[root@localhost scripts]# grep "^\<\([a-z]\+\)\>.*\1$" /etc/passwd
sync:x:5:0:sync:/sbin:/bin/sync
shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown
halt:x:7:0:halt:/sbin:/sbin/halt
bash:x:1002:1002::/home/bash:/bin/bash
nologin:x:1005:1005::/home/nologin:/sbin/nologin

原创文章,作者:jbm,如若转载,请注明出处:http://www.178linux.com/51989

(0)
jbmjbm
上一篇 2016-10-16
下一篇 2016-10-16

相关推荐

  • LVS

    LVS概念 LVS(Linux Virtual Server):Linux 虚拟服务器  LVS是个负载均衡设备,它不提供任何服务,用户请求到这里的时候,它是将客户需求转发至后端真正提供服务的服务,所以说后端的服务称作real server。LVS分为两段,前一段称为ipvsadm(管理集群服务的命令行工具),后面一段叫做ipvs(内核模块) LVS的类型 …

    Linux干货 2017-02-17
  • Linux磁盘及文件系统管理

    磁盘(Hard Disk Drive,简称HDD)是一种存储介质,传统的机械硬盘由一个或多个铝制或玻璃制的碟片组成,碟片外覆盖有铁磁性材料。 磁盘的物理结构一般由磁头与碟片、电动机、主控芯片与排线等部件组成;当主电动机带动碟片旋转时,副电动机带动一组(磁头)到相对应的碟片上并确定读取正面还是反面的碟面,磁头悬浮在碟面上画出一个与碟片同心的圆形轨道(磁轨或称柱…

    Linux干货 2015-04-20
  • 模拟centos6.8系统下initramfs文件和vmlinuz文件损坏恢复

    实验一:关于删除initramfs-2.6.32-642.el6.x86_64.img 文件恢复实验,实验环境centos6.8系统 1.安全起见,请先安排做快照及备份 把initramfs-2.6.32-642.el6.x86_64.img 文件复制一份/root目录下。 [root@centos6: boot]# cp -a initramfs-2.6.…

    2017-05-15
  • 硬盘基础知识及 MBR、GPT分区格式

    一,硬盘知识     硬盘接口类型:          并行:             IDE: 133MB/s &n…

    Linux干货 2016-09-19
  • Centos6系统救援模式

    CentOS 6系统救援模式 在学习了CentOS 5、6系统启动流程与启动故障排除之后,为了加深印象进行了如下破坏性尝试。 删除/boot目录与/etc/fstab文件后尝试修复系统 1. 首先是第一步删除/boot目录与/etc/fstab 删除/boot /etc/fstab 可以看到虽然boot目录无法删除但是目录中的文件已经全部删掉了。 2. 重新…

    Linux干货 2016-11-24
  • linux文件查找工具 — find

    简述:   linux中find命令是一种强大的实时查找工具,它通过用户给出的路径,在该路径下的文件系统中进行文件查找。因此在遍历一个较大的文件系统时会比较花费时间,而且find命令占用资源也是比较大的,所以它的工作特点是,查找的速度略慢,但是可以实现精确查找和实时查找。由于用户权限的问题,可能只搜索用户具备读取和执行权限的目录。由于fi…

    Linux干货 2016-08-18

评论列表(1条)

  • 马哥教育
    马哥教育 2016-10-20 19:38

    很不错,学有余力的话,可以把一些题目换个正则表达式来完成,加油。