INSTALL
上传用户:wxp200602
上传日期:2007-10-30
资源大小:4028k
文件大小:11k
源码类别:

SNMP编程

开发平台:

Unix_Linux

  1. TABLE OF CONTENTS
  2. =================
  3.   Table Of Contents
  4.   Quick Instructions
  5. * Ucd-Snmp Specific Information
  6.   Long (but you should read these) Instructions
  7.   Installing the Perl/SNMP Module
  8. * Compilers and Options
  9.   Compiling For Multiple Architectures
  10.   Installation Names
  11.   Optional Features
  12.   Sharing Defaults
  13.   Operation Controls
  14.   * = required reading
  15. QUICK INSTRUCTIONS
  16. ==================
  17.   1) Run ./configure
  18.      (type "./configure --help" for a quick usage summary.)
  19.      (--prefix=PATH will change the default /usr/local installation path.)
  20.      (see "Compilers and Options" on changing the complier to use)
  21.   2) Optionally edit include/net-snmp/net-snmp-config.h
  22.      (due to prompting done by the configure script, this is very rarely
  23.       necessary.)
  24.   3) make
  25.   4) Run the next command as root:
  26.   5) make install
  27.   6) configure the agent
  28.      (either using 'snmpconf' or by crafting an snmpd.conf file manually.
  29.       The file 'EXAMPLE.conf' may be a suitable starting point)
  30. Note: By default, everything will be installed in /usr/local.
  31.       (see below for more instructions)
  32. UCD-SNMP Specific Information
  33. =============================
  34. As of V3.3.1 the configuration files are now looked for in
  35. $(prefix)/share/snmp, where ($prefix) is defined as the value passed
  36. to the --prefix argument of the configure script, or /usr/local if
  37. undefined.  In version 3.0.3 till 3.3, the files were kept in
  38. $(prefix)/lib/snmp
  39. Optional features to pass to configure for ucd-snmp can be obtained by
  40. running configure --help.
  41. LONG (but you should read these) INSTRUCTIONS
  42. =============================================
  43.    The `configure' shell script attempts to guess correct values for
  44. various system-dependent variables used during compilation.  It uses
  45. those values to create a `Makefile' in each directory of the package.
  46. It may also create one or more `.h' files containing system-dependent
  47. definitions.  Finally, it creates a shell script `config.status' that
  48. you can run in the future to recreate the current configuration, a file
  49. `config.cache' that saves the results of its tests to speed up
  50. reconfiguring, a file `config.log' containing compiler output
  51. (useful mainly for debugging `configure') and a file `configure-summary'
  52. containing the summary displayed at the end of the `configure' run.
  53.    The file `include/net-snmp/net-snmp-config.h' is also generated
  54. at this time.  It contains IMPORTANT information such as the location
  55. of log and configuration files.  In some special cases you may need to
  56. modify this file but it is prefererable to work out a way of getting
  57. `configure' to set things up for your particular environment.
  58. As the `configure' invocation often gets lengthy and difficult to
  59. type or if you have several different ways you want to configure a
  60. system, you may want to create a shell script containing your invocation.
  61.    If you need to do unusual things to compile the package, please try
  62. to figure out how `configure' could check whether to do them, and mail
  63. diffs or instructions to the address given in the `README' so they can
  64. be considered for the next release.  If at some point `config.cache'
  65. contains results you don't want to keep, you may remove or edit it.
  66.    The file `configure.in' is used to create `configure' by a program
  67. called `autoconf'.  You only need `configure.in' if you want to change
  68. it or regenerate `configure' using a newer version of `autoconf'.
  69. The simplest way to compile this package is:
  70.   1. `cd' to the directory containing the package's source code and type
  71.      `./configure' to configure the package for your system.  If you're
  72.      using `csh' on an old version of System V, you might need to type
  73.      `sh ./configure' instead to prevent `csh' from trying to execute
  74.      `configure' itself.
  75.      Running `configure' takes awhile.  While running, it prints some
  76.      messages telling which features it is checking for.  When it
  77.      completes it prints a short message (also available in configure-summary)
  78.      indicating what functionality will be available when compiled.
  79.   2. If necessary, edit include/net-snmp/net-snmp-config.h (see above).  
  80.   3. Type `make' to compile the package.
  81.   4. Type `make test' which runs a variety of tests to see what functionality
  82.      has been incorporated and if it works.
  83.   5. Type `make install' to install the programs and any data files and
  84.      documentation.
  85.   6. You can remove the program binaries and object files from the
  86.      source code directory by typing `make clean'.  To also remove the
  87.      files that `configure' created (so you can compile the package for
  88.      a different kind of computer), type `make distclean'.
  89.   7. You can remove the application by typing `make uninstall'.
  90. There may be additional installation issues discussed in the 
  91. README's for various platforms such as README.solaris.
  92. Installing the Perl/SNMP Module
  93. ===============================
  94.    The Perl/SNMP Module is now bundled with the net-snmp package
  95. (which includes other Net-SNMP specific modules as well), all of which
  96. are located in the net-snmp/perl directory. The Perl package provides
  97. a high level abstract interface to the functionality found in the
  98. Net-SNMP libraries and demon applications.
  99.    It is recommended you install the perl modules as you build the
  100.    Net-SNMP package.  The configure script can be run as follows to
  101.    automatically find perl and use it to install the perl modules:
  102.       ./configure --with-perl-modules
  103.    If you wish to use the embedded perl support available in the
  104.    Net-SNMP agent (and starting in Net-SNMP 5.2, the trap receiver),
  105.    then use the following option instead:
  106.       ./configure --enable-embedded-perl --enable-shared
  107.    If you wish to build the perl modules by hand, *install Net-SNMP
  108.    first* and then change directories to the perl subdirectory and:
  109.    Run:
  110.             cd perl
  111.             perl Makefile.PL
  112.             make
  113.             make test
  114.             make install (as root)
  115. Compilers and Options
  116. =====================
  117.    Some systems require unusual options for compilation or linking that
  118. the `configure' script does not know about.  You can give `configure'
  119. initial values for variables by setting them in the environment.  Using
  120. a Bourne-compatible shell, you can do that on the command line like
  121. this:
  122.      CC=c89 CFLAGS=-O2 LIBS=-lposix ./configure
  123. Or on systems that have the `env' program, you can do it like this:
  124.      env CPPFLAGS=-I/usr/local/include LDFLAGS=-s ./configure
  125. Compiling For Multiple Architectures
  126. ====================================
  127.    You can compile the package for more than one kind of computer at the
  128. same time, by placing the object files for each architecture in their
  129. own directory.  To do this, you must use a version of `make' that
  130. supports the `VPATH' variable, such as GNU `make'.  `cd' to the
  131. directory where you want the object files and executables to go and run
  132. the `configure' script.  `configure' automatically checks for the
  133. source code in the directory that `configure' is in and in `..'.
  134.    If you have to use a `make' that does not supports the `VPATH'
  135. variable, there is a `maketarget' script that will generate a symlink'ed
  136. shadow-directory for the object files. Do a `sh maketarget', then `cd' into
  137. targets/`config.guess` and do the configuration and installation.
  138. Installation Names
  139. ==================
  140.    By default, `make install' will install the package's files in
  141. `/usr/local/bin', `/usr/local/man', etc.  You can specify an
  142. installation prefix other than `/usr/local' by giving `configure' the
  143. option `--prefix=PATH'.
  144.    You can specify separate installation prefixes for
  145. architecture-specific files and architecture-independent files.  If you
  146. give `configure' the option `--exec-prefix=PATH', the package will use
  147. PATH as the prefix for installing programs and libraries.
  148. Documentation and other data files will still use the regular prefix.
  149.    If the package supports it, you can cause programs to be installed
  150. with an extra prefix or suffix on their names by giving `configure' the
  151. option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'.
  152. Optional Features
  153. =================
  154.    Some packages pay attention to `--enable-FEATURE' options to
  155. `configure', where FEATURE indicates an optional part of the package.
  156. They may also pay attention to `--with-PACKAGE' options, where PACKAGE
  157. is something like `gnu-as' or `x' (for the X Window System).  The
  158. `README' should mention any `--enable-' and `--with-' options that the
  159. package recognizes.
  160.    For packages that use the X Window System, `configure' can usually
  161. find the X include and library files automatically, but if it doesn't,
  162. you can use the `configure' options `--x-includes=DIR' and
  163. `--x-libraries=DIR' to specify their locations.
  164. Specifying the System Type
  165. ==========================
  166.    There may be some features `configure' can not figure out
  167. automatically, but needs to determine by the type of host the package
  168. will run on.  Usually `configure' can figure that out, but if it prints
  169. a message saying it can not guess the host type, give it the
  170. `--host=TYPE' option.  TYPE can either be a short name for the system
  171. type, such as `sun4', or a canonical name with three fields:
  172.      CPU-COMPANY-SYSTEM
  173. See the file `config.sub' for the possible values of each field.  If
  174. `config.sub' isn't included in this package, then this package doesn't
  175. need to know the host type.
  176.    If you are building compiler tools for cross-compiling, you can also
  177. use the `--target=TYPE' option to select the type of system they will
  178. produce code for and the `--build=TYPE' option to select the type of
  179. system on which you are compiling the package.
  180. Sharing Defaults
  181. ================
  182.    If you want to set default values for `configure' scripts to share,
  183. you can create a site shell script called `config.site' that gives
  184. default values for variables like `CC', `cache_file', and `prefix'.
  185. `configure' looks for `PREFIX/share/config.site' if it exists, then
  186. `PREFIX/etc/config.site' if it exists.  Or, you can set the
  187. `CONFIG_SITE' environment variable to the location of the site script.
  188. A warning: not all `configure' scripts look for a site script.
  189. Operation Controls
  190. ==================
  191.    `configure' recognizes the following options to control how it
  192. operates.
  193. `--cache-file=FILE'
  194.      Use and save the results of the tests in FILE instead of
  195.      `./config.cache'.  Set FILE to `/dev/null' to disable caching, for
  196.      debugging `configure'.
  197. `--help'
  198.      Print a summary of the options to `configure', and exit.
  199. `--quiet'
  200. `--silent'
  201. `-q'
  202.      Do not print messages saying which checks are being made.
  203. `--srcdir=DIR'
  204.      Look for the package's source code in directory DIR.  Usually
  205.      `configure' can determine that directory automatically.
  206. `--version'
  207.      Print the version of Autoconf used to generate the `configure'
  208.      script, and exit.
  209. `configure' also accepts some other, not widely useful, options.