inotify工具安装配置

一、安装

1)  从内核和目录里面查看是否支持inotify

[[email protected] ~]# uname -r

2.6.32-573.el6.x86_64

[[email protected] ~]# ls -l /proc/sys/fs/inotify/    -→主要查看下面有没有三个目录

总用量 0

-rw-r--r-- 1 root root 0 1月  21 13:03 max_queued_events

-rw-r--r-- 1 root root 0 1月  21 13:03 max_user_instances

-rw-r--r-- 1 root root 0 1月  21 13:03 max_user_watches

2)检查是否有安装inotify 如果没有就安装

rpm -qa inotify-tools

没有就先安装epol源

yum.repos.d]# wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-6.repo

之后安装

[[email protected] ~]# yum install inotify-tools -y

二、参数讲解、

[[email protected] ~]# which inotifywait

/usr/bin/inotifywait

[[email protected] inotify-tools]# bin/inotifywait —help

r :递归查询目录

q:打印很少的信息,仅仅打印监控事件的信息  安静状态

m:始终保持事件监听状态

excluder#排除文件或者目录的时候不区分大小写

timefmt:指定时间输出的格式

d :后台运行

-e: 事件 里面有很多方法

下面是事件参数

Events:

        access          file or directory contents were read   访问

        modify          file or directory contents were written  修改

        attrib          file or directory attributes changed  属性发生变化

        close_write     file or directory closed, after being opened in  写入之后关闭

                        writeable mode

        close_nowrite   file or directory closed, after being opened in  

                        read-only mode

        close           file or directory closed, regardless of read/write mode 

        open            file or directory opened

        moved_to        file or directory moved to watched directory  移动到哪里

        moved_from      file or directory moved from watched directory

        move            file or directory moved to or from watched directory

        create          file or directory created within watched directory

        delete          file or directory deleted within watched directory

        delete_self     file or directory was deleted

        unmount         file system containing file or directory unmounted卸载

之后就可以和nfs共享服务器之间的实时备份

时间: 2024-12-25 09:52:25

inotify工具安装配置的相关文章

Oracle 客户端安装 + pl/sql工具安装配置

Oracle 客户端安装 +  pl/sql工具安装配置 下载oracle客户端,并在本地安装. 11g下载地址为: http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html 10g下载地址为: http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html 根据自己机器或者oracle服

tcpreplay工具安装-配置-实例

tcpreplay工具安装-配置-实例 TCPReplay是一个非常强大的集成工具,其中主要包括TCPReplay.TCPPrepare.TCPrewrite工具,根据其具体参数对.pcap文件进行更改,然后重放数据包. 使用条件:Linux操作系统.双网卡 对TCPReplay工具分3个部分来讲解,第一部分安装一个操作linux操作系统.第二部分安装TCPReplay以及相关组件.举一个实例来分析相关参数意义. 一.          Ubuntu12的USB安装过程或者硬盘安装过程,在WIN

图文并茂——Oracle 10g Client与PLSQL Developer工具安装配置

昨天我们演示了Oracle database 10g在Windows下的安装,今天我们来看一下Oracle客户端和PLSQL Developer软件的安装. 首先下载Oracle client客户端,下载地址为:http://www.oracle.com/technology/software/products/database/oracle10g/htdocs/10201winsoft.html 解压缩后,生成client的文件夹,双击里面的setup.exe图标. 出现四种安装类型,分别为I

inotify+rsync安装配置

环境 系统 IP地址 主服务器 CentOS7.4 192.168.1.1 备份服务器 CentOS7.4 192.168.1.2 一.备份服务器 安装rsync(备) wget https://rsync.samba.org/ftp/rsync/src/rsync-3.1.3.tar.gz tar -xf rsync-3.1.3.tar.gz ./configure --prefix=/usr/local/rsync make && make install 配置rsyncd.conf

checkstyle代码检查工具安装配置

使用:SVN钩子 + CheckStyle + svnchecker 原理概述: (1)CheckStyle定义了代码的规范; (2)svnchecker可以调用CheckStyle定义的规范进行检查; (3)使用svn的钩子程序可以在代码提交前执行svnchecker. 安装步骤: 1.下载并安装CheckStyle(使用版本:5.2)如下为checkstyle-5.2安装后的文件目录.其中checkstyle-5.2-all.jar为供svnchecker调用的jar文件,checkstyl

Linux工具安装配置

1.修改主机名/添加别名访问 修改/etc/sysconfig/network中的hostnameNETWORKING=yesHOSTNAME=dlserver01; 修改/etc/hosts文件 172.16.50.123 dlserver01 # Added by NetworkManager127.0.0.1 localhost.localdomain localhost::1 dlserver01 localhost6.localdomain6 localhost6172.16.50.1

运维自动化之:Saltstack配置管理工具安装配置使用攻略

系统环境: Centos 6.x 服务端(salt-master):10.1.2.11 客户端(salt-minion):10.1.2.10.10.1.2.11.10.1.2.12 安装: rpm -Uvh http://ftp.linux.ncsu.edu/pub/epel/6/i386/epel-release-6-8.noarch.rpm 服务端:yum install salt-master  客户端:yum install salt-minion 服务端配置: vim /etc/sal

inotify-tools工具安装配置

什么是Inotify? Inotify一种强大的.细粒度的.异步文件系统监控机制,它满足各种各样的文件监控需要,可以监控文件系统的访问属性.读写属性.权限属性.删除创建.移动等操作,也就是可以监控文件发生的一切变化.. inotify-tools是一个C库和一组命令行的工作提供Linux下inotify的简单接口.inotify-tools安装后会得到inotifywait和inotifywatch这两条命令: 一.安装 1.从内核和目录里面查看是否支持inotify [[email prote

Linux工具安装配置之Oracle

对于Oracle的安装真的是心生恐惧,特别是一堆堆的依赖包.趁这次DBA在南京,实际操作一番. 两种方式,1.全新安装:2.硬拷贝 全新安装,参考下面这个介绍 http://www.cnblogs.com/zhangyongli2011/archive/2012/04/04/2431953.html 安装过程中遇到的问题 1.空间不够 INS-32021: Insufficient disk space on this volume for the selected Oracle home.Ca