本帖最后由 monicazhang 于 2015-10-30 21:25 编辑
20151030 淡然
Table of Contents
List of Tables
Preface The purpose of this guidelines is to provide a reference for the plug-in developers and encourage the standarization of the different kind of plug-ins: C, shell, perl, python, etc.这个向导的目的是为插件开发者提供一个手册,并为不同类型插件(如:C, shell, perl, python等)提供一个标准。 Nagios Plug-in Development Guidelines Copyright (C) 2000-2009 (Nagios Plugins Team) Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies. The plugins themselves are copyrighted by their respective authors.插件的版权归开发者个人。 开源监控软件
Table of Contents
1. Development platform requirements Nagios plugins are developed to the GNU standard, so any OS which is supported by GNU should run the plugins. While the requirements for compiling the Nagios plugins release are very basic, developing from the Git repository requires additional software to be installed. These are the minimum levels of software required: 下面是最基本软件环境要求: nagios实施 GNU make 3.79
GNU automake 1.9.2
GNU autoconf 2.59
GNU m4 1.4.2
GNU libtool 1.5 To compile from Git, after you have cloned the repository, run: 从Git编译,从库中复制了代码后,运行以下命令: tools/setup
./configure nagios培训
make
make install
|