第5周

QQ图片20160912112058.png

1,
 ~]# grep "^root\>" /etc/passwd | cut -d: -f7

4,
~]# ifconfig | grep "\<[0-9][0-9][0-9]\>"

7,
 ~]# find /var -user root -group mail

8,
~]# find / -nouser -o -nogroup -ls

9,
~]# find /etc/ -perm -222 -ls

10,
~]# find /etc/ -type f -size +1M

11,
~]# find /etc/init.d/ -type f -perm -112 -ls

12,
~]# find /usr/ -type f -not -user bin -not -user root -ls
~]# echo $?
0

13,
 ~]# find /etc/ -type f -perm /666 -ls

14,
~]# find /etc/ -type f -not -user root -atime -7
~]# echo $?
0

原创文章,作者:N22-无锡-嚯嚯,如若转载,请注明出处:http://www.178linux.com/45746

(0)
N22-无锡-嚯嚯N22-无锡-嚯嚯
上一篇 2016-09-15
下一篇 2016-09-15

相关推荐

  • Linux的文件系统的基础目录、帮助、部分命令介绍

    Linux的文件系统的基础目录、帮助、部分命令介绍 目录 linux基础目录 Linux获取帮助 相关控制命令,翻屏等 部分命令介绍 linux的基础目录 Bin: 共所有用户使用的基本命令,就是二进制程序 Sbin:系统的二进制程序。供管理员使用的 Boot:基本的加载器,引导加载器所依赖的各种静态文件 Dev:设备文件和特殊文件 其中设备分为两种类型,字…

    Linux干货 2016-10-29
  • 8.1作业习题

    1,创建testuser uid 1234,主组:bin,辅助组:root,ftp,shell:/bin/csh home:/testdir/testuser useradd -u 1234 -g bin -G root,ftp -s /bin/csh -d /testdir/testuser testuser 2.修改testuser uid:4321,主…

    Linux干货 2016-08-04
  • 在CentOS5,6上破解和加密口令

    在CentOS5,6上:    破解和加密口令:     破解口令方法一: 破解口令方法二:    重启虚拟机进入救援模式: 备注:生产中不用虚拟机时不要挂载光盘;防止光盘引导破解密码 加密口令: 编辑配置文件: /etc/grub.conf

    2017-05-16
  • N26-第五周

    1、显示当前系统上root、fedora或user1用户的默认shell;[root@localhost ~]# grep -E ‘^(root|fedora|user1)\>’ /etc/passwdroot:x:0:0:root:/root:/bin/bashfedora:x:4002:4002:Fedora Core:/h…

    Linux干货 2017-03-13
  • raid介绍

    raid介绍 在生产环境中,服务器所需的存储容量比较大,一般都会选择磁盘阵列来走存储。 阵列的优点 多个磁盘合成一个“阵列”来提供更好的性能、冗余,或者两者都提供 首先在I/O能力上,多个磁盘并行读写,可以提高读写的速度。 阵列所提供的磁盘冗余,提升存储设配的耐用性。 RAID实现的 外接式磁盘阵列:通过扩展卡提供适配能力 内接式RAID:主板集成RAID控…

    2017-06-24
  • Mysql 启动时 报ERROR 2002,分析解决、

    1、故障现象 [root@localhost scripts]# mysql -u root ERROR 2002 (HY000): Can’t connect to local MySQL server through socket ‘/tmp/mysqld.sock’ (2) 2、故障分析 查看mysql实例的状态 [root@localhost scr…

    Linux干货 2017-08-29

评论列表(1条)

  • 马哥教育
    马哥教育 2016-09-19 18:46

    没写完吧?可以挑战一下