NET-SNMP install

Linux/Tools | 2006/06/07 05:04 | adioshun
INSTALL

TABLE OF CONTENTS
=================

Table Of Contents
Quick Instructions
* Ucd-Snmp Specific Information
Long (but you should read these) Instructions
Installing the Perl/SNMP Module
* Compilers and Options
Compiling For Multiple Architectures
Installation Names
Optional Features
Sharing Defaults
Operation Controls

* = required reading

QUICK INSTRUCTIONS
==================

1) Run ./configure
  (type "./configure --help" for a quick usage summary.)
  (--prefix=PATH will change the default /usr/local installation path.)
  (see "Compilers and Options" on changing the complier to use)

2) Optionally edit include/net-snmp/net-snmp-config.h
  (due to prompting done by the configure script, this is very rarely
   necessary.)

3) make

4) Run the next command as root:
5) make install

6) configure the agent
  (either using 'snmpconf' or by crafting an snmpd.conf file manually.
   The file 'EXAMPLE.conf' may be a suitable starting point)

Note: By default, everything will be installed in /usr/local.
   (see below for more instructions)

UCD-SNMP Specific Information
=============================

As of V3.3.1 the configuration files are now looked for in
$(prefix)/share/snmp, where ($prefix) is defined as the value passed
to the --prefix argument of the configure script, or /usr/local if
undefined. In version 3.0.3 till 3.3, the files were kept in
$(prefix)/lib/snmp

Optional features to pass to configure for ucd-snmp can be obtained by
running configure --help.

LONG (but you should read these) INSTRUCTIONS
=============================================

 The `configure' shell script attempts to guess correct values for
various system-dependent variables used during compilation. It uses
those values to create a `Makefile' in each directory of the package.
It may also create one or more `.h' files containing system-dependent
definitions. Finally, it creates a shell script `config.status' that
you can run in the future to recreate the current configuration, a file
`config.cache' that saves the results of its tests to speed up
reconfiguring, a file `config.log' containing compiler output
(useful mainly for debugging `configure') and a file `configure-summary'
containing the summary displayed at the end of the `configure' run.

 The file `include/net-snmp/net-snmp-config.h' is also generated
at this time. It contains IMPORTANT information such as the location
of log and configuration files. In some special cases you may need to
modify this file but it is prefererable to work out a way of getting
`configure' to set things up for your particular environment.

As the `configure' invocation often gets lengthy and difficult to
type or if you have several different ways you want to configure a
system, you may want to create a shell script containing your invocation.

 If you need to do unusual things to compile the package, please try
to figure out how `configure' could check whether to do them, and mail
diffs or instructions to the address given in the `README' so they can
be considered for the next release. If at some point `config.cache'
contains results you don't want to keep, you may remove or edit it.

 The file `configure.in' is used to create `configure' by a program
called `autoconf'. You only need `configure.in' if you want to change
it or regenerate `configure' using a newer version of `autoconf'.

The simplest way to compile this package is:

1. `cd' to the directory containing the package's source code and type
  `./configure' to configure the package for your system. If you're
  using `csh' on an old version of System V, you might need to type
  `sh ./configure' instead to prevent `csh' from trying to execute
  `configure' itself.

  Running `configure' takes awhile. While running, it prints some
  messages telling which features it is checking for. When it
  completes it prints a short message (also available in configure-summary)
  indicating what functionality will be available when compiled.

2. If necessary, edit include/net-snmp/net-snmp-config.h (see above).

3. Type `make' to compile the package.

4. Type `make test' which runs a variety of tests to see what functionality
  has been incorporated and if it works.

5. Type `make install' to install the programs and any data files and
  documentation.

6. You can remove the program binaries and object files from the
  source code directory by typing `make clean'. To also remove the
  files that `configure' created (so you can compile the package for
  a different kind of computer), type `make distclean'.

7. You can remove the application by typing `make uninstall'.

There may be additional installation issues discussed in the
README's for various platforms such as README.solaris.


Installing the Perl/SNMP Module
===============================
 The Perl/SNMP Module is now bundled with the net-snmp package
(which includes other Net-SNMP specific modules as well), all of which
are located in the net-snmp/perl directory. The Perl package provides
a high level abstract interface to the functionality found in the
Net-SNMP libraries and demon applications.

 It is recommended you install the perl modules as you build the
 Net-SNMP package. The configure script can be run as follows to
 automatically find perl and use it to install the perl modules:

   ./configure --with-perl-modules

 If you wish to use the embedded perl support available in the
 Net-SNMP agent (and starting in Net-SNMP 5.2, the trap receiver),
 then use the following option instead:

   ./configure --enable-embedded-perl --enable-shared


 If you wish to build the perl modules by hand, *install Net-SNMP
 first* and then change directories to the perl subdirectory and:

 Run:
       cd perl
       perl Makefile.PL
       make
       make test
       make install (as root)


Compilers and Options
=====================

 Some systems require unusual options for compilation or linking that
the `configure' script does not know about. You can give `configure'
initial values for variables by setting them in the environment. Using
a Bourne-compatible shell, you can do that on the command line like
this:
  CC=c89 CFLAGS=-O2 LIBS=-lposix ./configure

Or on systems that have the `env' program, you can do it like this:
  env CPPFLAGS=-I/usr/local/include LDFLAGS=-s ./configure

Compiling For Multiple Architectures
====================================

 You can compile the package for more than one kind of computer at the
same time, by placing the object files for each architecture in their
own directory. To do this, you must use a version of `make' that
supports the `VPATH' variable, such as GNU `make'. `cd' to the
directory where you want the object files and executables to go and run
the `configure' script. `configure' automatically checks for the
source code in the directory that `configure' is in and in `..'.

 If you have to use a `make' that does not supports the `VPATH'
variable, there is a `maketarget' script that will generate a symlink'ed
shadow-directory for the object files. Do a `sh maketarget', then `cd' into
targets/`config.guess` and do the configuration and installation.

Installation Names
==================

 By default, `make install' will install the package's files in
`/usr/local/bin', `/usr/local/man', etc. You can specify an
installation prefix other than `/usr/local' by giving `configure' the
option `--prefix=PATH'.

 You can specify separate installation prefixes for
architecture-specific files and architecture-independent files. If you
give `configure' the option `--exec-prefix=PATH', the package will use
PATH as the prefix for installing programs and libraries.
Documentation and other data files will still use the regular prefix.

 If the package supports it, you can cause programs to be installed
with an extra prefix or suffix on their names by giving `configure' the
option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'.

Optional Features
=================

 Some packages pay attention to `--enable-FEATURE' options to
`configure', where FEATURE indicates an optional part of the package.
They may also pay attention to `--with-PACKAGE' options, where PACKAGE
is something like `gnu-as' or `x' (for the X Window System). The
`README' should mention any `--enable-' and `--with-' options that the
package recognizes.

 For packages that use the X Window System, `configure' can usually
find the X include and library files automatically, but if it doesn't,
you can use the `configure' options `--x-includes=DIR' and
`--x-libraries=DIR' to specify their locations.

Specifying the System Type
==========================

 There may be some features `configure' can not figure out
automatically, but needs to determine by the type of host the package
will run on. Usually `configure' can figure that out, but if it prints
a message saying it can not guess the host type, give it the
`--host=TYPE' option. TYPE can either be a short name for the system
type, such as `sun4', or a canonical name with three fields:
  CPU-COMPANY-SYSTEM

See the file `config.sub' for the possible values of each field. If
`config.sub' isn't included in this package, then this package doesn't
need to know the host type.

 If you are building compiler tools for cross-compiling, you can also
use the `--target=TYPE' option to select the type of system they will
produce code for and the `--build=TYPE' option to select the type of
system on which you are compiling the package.

Sharing Defaults
================

 If you want to set default values for `configure' scripts to share,
you can create a site shell script called `config.site' that gives
default values for variables like `CC', `cache_file', and `prefix'.
`configure' looks for `PREFIX/share/config.site' if it exists, then
`PREFIX/etc/config.site' if it exists. Or, you can set the
`CONFIG_SITE' environment variable to the location of the site script.
A warning: not all `configure' scripts look for a site script.

Operation Controls
==================

 `configure' recognizes the following options to control how it
operates.

`--cache-file=FILE'
  Use and save the results of the tests in FILE instead of
  `./config.cache'. Set FILE to `/dev/null' to disable caching, for
  debugging `configure'.

`--help'
  Print a summary of the options to `configure', and exit.

`--quiet'
`--silent'
`-q'
  Do not print messages saying which checks are being made.

`--srcdir=DIR'
  Look for the package's source code in directory DIR. Usually
  `configure' can determine that directory automatically.

`--version'
  Print the version of Autoconf used to generate the `configure'
  script, and exit.

`configure' also accepts some other, not widely useful, options.
2006/06/07 05:04 2006/06/07 05:04
TAG
Trackback address :: http://4ellene.net/tt/trackback/898
  1. casino

    Tracked from online strip poker 2009/03/30 04:40  삭제

    online casino

  2. rape prevention

    Tracked from rape pussy 2009/04/14 10:15  삭제

    rape porno

  3. forced asian sex

    Tracked from forced ass sex 2009/04/14 11:39  삭제

    forced anime sex

  4. bondage hentai

    Tracked from bondage movies 2009/04/15 12:52  삭제

    bondage girls

  5. teen rape pics

    Tracked from rape survivors 2009/06/29 04:45  삭제

    porn rape sites

  6. sickest rape sites

    Tracked from forced suck 2009/06/29 07:57  삭제

    rape websites

  7. tentacle rape

    Tracked from forced oral sex 2009/06/29 17:38  삭제

    rape thumbs

  8. anal rape

    Tracked from brutal blow jobs 2009/06/30 00:41  삭제

    porn rape stories

  9. extreme insertion anal

    Tracked from rape index porn 2009/06/30 02:21  삭제

    rape clips

  10. rape photos

    Tracked from rape teens 2009/06/30 10:00  삭제

    young rape victims

  11. japanese asian rape videos

    Tracked from extreme pussy stretching 2009/06/30 21:46  삭제

    japanese forced sex

  12. pics of rape

    Tracked from rape fucking 2009/06/30 22:11  삭제

    brutal anal

  13. forced dog sex videos

    Tracked from forced ass sex 2009/07/01 05:58  삭제

    bride rape

  14. rape porn films

    Tracked from rape tube 2009/07/01 14:24  삭제

    anime rape

  15. rape anime

    Tracked from porn tube rape 2009/07/01 21:01  삭제

    extreme sex videos

  16. forced rape porn

    Tracked from rape xxx porn 2009/07/02 12:36  삭제

    forced sex with dog

  17. asian forced sex

    Tracked from incest rape 2009/07/02 20:53  삭제

    male rape

  18. real rape videos

    Tracked from extreme blowjobs 2009/07/03 03:27  삭제

    rape incest

  19. forced teen

    Tracked from rape comix 2009/07/03 16:06  삭제

    brutal torture sex

  20. casino free online

    Tracked from online no deposit casinos 2009/07/10 04:10  삭제

    free online casino game

  21. casino website

    Tracked from online casino bonus 2009/07/10 07:32  삭제

    casino online games

  22. online casino bonuses

    Tracked from no download online casinos 2009/07/11 00:03  삭제

    online casino no deposit bonus

  23. online casino slot

    Tracked from online casino no deposit 2009/07/11 03:40  삭제

    free online casino gaming

  24. play free casino games

    Tracked from top casino 2009/07/11 04:52  삭제

    online casino $10 minimum deposit

  25. no deposit online casino

    Tracked from download online casino games 2009/07/11 20:25  삭제

    online casino for south dakota

  26. tops casino

    Tracked from casino games online 2009/07/13 01:13  삭제

    american online casinos

  27. top casino

    Tracked from download online casino games 2009/07/13 20:14  삭제

    1 hour free us online casinos

  28. us online casinos

    Tracked from no bonus online casinos 2009/07/14 03:24  삭제

    casino sites

  29. usa casino gaming

    Tracked from casino gamble 2009/07/15 00:50  삭제

    new online casino

  30. online casino guide

    Tracked from no download casino 2009/07/15 09:33  삭제

    internet casino

  31. no download casino

    Tracked from online gambling casino 2009/07/16 01:06  삭제

    casinos gratis online

  32. gambling money for online casino

    Tracked from online casino gaming 2009/07/16 03:33  삭제

    casino open usa

  33. online casino site

    Tracked from play poker online 2009/07/16 11:44  삭제

    poker games online

  34. top online casinos

    Tracked from new online casino 2009/07/16 12:43  삭제

    top online casinos

  35. free online casinos

    Tracked from canadian online casinos 2009/07/17 00:14  삭제

    gambling money for online casino

  36. casino poker game online

    Tracked from online casino betting 2009/07/17 03:43  삭제

    casinos online

  37. casino deposit bonus

    Tracked from online casinos accepting all usa players 2009/07/17 17:36  삭제

    online casino games

  38. live online poker

    Tracked from online casino deposit 2009/07/17 20:18  삭제

    free online casino games

  39. online casino gaming

    Tracked from online casino bonus 2009/07/17 20:20  삭제

    australian online casino

  40. online no deposit casinos

    Tracked from online casino blackjack 2009/07/18 06:46  삭제

    casino sites

  41. online casinos no deposit

    Tracked from club usa casino bonus 2009/07/19 00:56  삭제

    online casino slots

  42. online casinos no deposit

    Tracked from online download casino games blackjack 2009/07/19 11:55  삭제

    united states online casino

  43. play casino games online

    Tracked from directorio casino online 2009/07/20 00:57  삭제

    casino sites

  44. pictures of transexual woman

    Tracked from sexy ladyboy 2009/07/20 07:16  삭제

    pattaya ladyboy

  45. tranny gallery

    Tracked from hung ladyboys 2009/07/20 10:43  삭제

    ladyboy stories

  46. sexy ladyboy

    Tracked from big tits transexuals 2009/07/21 09:28  삭제

    tranny cumshots

  47. latin tranny

    Tracked from younger trannies 2009/07/21 19:32  삭제

    post op tranny

  48. pictures of transexual woman

    Tracked from transexual 2009/07/21 21:32  삭제

    black transexuals

  49. tranny tube

    Tracked from ladyboy tgp 2009/07/22 06:55  삭제

    real futanari

  50. ladyboy dicks

    Tracked from ladyboy cumming 2009/07/22 11:33  삭제

    ladyboy video

  51. transexual tgp

    Tracked from ladyboy nancy 2009/07/22 17:40  삭제

    trannies in trouble

  52. hung shemale

    Tracked from ladyboy porn 2009/07/23 00:34  삭제

    japanese transexual videos

  53. black transvestite

    Tracked from big tits transexuals 2009/07/23 02:15  삭제

    beautiful transexuals

  54. shemale cumshots

    Tracked from asian ladyboy movies 2009/07/23 07:02  삭제

    chinese ladyboy

  55. big tits transexuals

    Tracked from tranny video 2009/07/23 07:26  삭제

    shemale yum

  56. post op ladyboys

    Tracked from thai ladyboy 2009/07/23 23:22  삭제

    wild tranny sex

  57. teen ladyboys

    Tracked from huge tranny 2009/07/24 03:05  삭제

    tranny gangbang

  58. tranny lesbian

    Tracked from shemale fucking 2009/07/24 03:31  삭제

    transvestite porn

  59. shemale creampie

    Tracked from ladyboy ass 2009/07/24 06:19  삭제

    ladyboy photos

  60. ladyboy gallery

    Tracked from futanari comics 2009/07/25 07:06  삭제

    transvestite tgp

  61. dad fucking daughter

    Tracked from daughter incest incest 2009/09/06 04:10  삭제

    dad fucks daughter

  62. family incest galleries

    Tracked from family incest 2009/09/06 05:29  삭제

    family nude

  63. family sex

    Tracked from brother sister incest 2009/09/06 06:32  삭제

    3d incest

  64. 3d incest

    Tracked from incest toons 2009/09/06 09:08  삭제

    incest cartoon

  65. mom son sex

    Tracked from mom son fucking 2009/09/06 13:42  삭제

    mom strips for son

  66. father daughter incest

    Tracked from family sex clips 2009/09/06 14:21  삭제

    father daughter sex

  67. dad fucks daughter

    Tracked from dad fucking son 2009/09/06 23:38  삭제

    daddies and sons gay

  68. incest porn

    Tracked from incest stories 2009/09/07 01:50  삭제

    free incest stories

  69. Mother Son Porn

    Tracked from Mom And Son Sex Galleries 2009/09/08 01:13  삭제

    Mother Sucks Son

  70. incest mother and daughter

    Tracked from mother daughter lesbian sex 2009/09/08 06:51  삭제

    mother daughter fuck

  71. dad and daughter sex

    Tracked from dad daughter 2009/09/08 23:36  삭제

    dad daughter nude sex

  72. sister incest

    Tracked from sister fucking brother 2009/09/09 08:51  삭제

    sister nude

  73. family nudist galleries

    Tracked from family nude 2009/09/09 09:08  삭제

    family orgy

  74. daughter sex

    Tracked from father daughter sex 2009/09/09 12:33  삭제

    daddies fucking daughters

  75. incest taboo forum

    Tracked from incest taboo 2009/09/09 21:19  삭제

    incest toons

  76. incest lesbian stories

    Tracked from mom and daughter sex 2009/09/09 23:26  삭제

    Fucked Her Son

  77. xxx bondage

    Tracked from worst tortures 2009/09/11 05:12  삭제

    amateur bdsm

  78. hardcore bdsm

    Tracked from hand domination 2009/09/11 07:40  삭제

    hogtied bondage

  79. female torture

    Tracked from female domination stories 2009/09/12 03:14  삭제

    femdom bondage

  80. torture whip

    Tracked from torture videos 2009/09/12 10:02  삭제

    tranny domination

  81. sex bondage

    Tracked from self bondage stories 2009/09/12 13:16  삭제

    sex punishment

  82. bdsm pillory

    Tracked from bdsm pictures 2009/09/12 13:38  삭제

    bdsm playpen

  83. bondage comics

    Tracked from bondage clips 2009/09/12 23:21  삭제

    bondage directory

  84. cock ball torture

    Tracked from cock and ball torture 2009/09/12 23:54  삭제

    cock bondage

  85. bondage comics

    Tracked from bondage clips 2009/09/13 19:47  삭제

    bondage directory

  86. slave training

    Tracked from slave torture stories 2009/09/14 01:13  삭제

    suspension bondage

  87. bondage watch

    Tracked from bondage videos 2009/09/14 11:42  삭제

    bondage wizard

  88. cunt torture

    Tracked from corset torture story 2009/09/14 12:31  삭제

    diaper bondage

  89. bondage orgasm

    Tracked from bondage movies 2009/09/15 10:36  삭제

    bondage paper

  90. bdsm for all

    Tracked from bdsm couples 2009/09/16 06:25  삭제

    bdsm forum

  91. wax torture

    Tracked from water torture 2009/09/17 14:27  삭제

    witch torture

  92. slave girl

    Tracked from silent screams bdsm 2009/09/17 17:02  삭제

    slave torture stories

  93. taboo family sex

    Tracked from sister sex 2009/09/27 15:35  삭제

    son fucks his mom

  94. father fucks daughter

    Tracked from fathers fucking daughters 2009/09/27 16:58  삭제

    father daughter porn

  95. Incest Porn

    Tracked from father daughter porn 2009/09/28 10:57  삭제

    incest

  96. Fucked Her Son

    Tracked from incest lesbian stories 2009/09/29 15:19  삭제

    Moms Fucking Sons

  97. 3d incest

    Tracked from family sex 2009/10/01 18:28  삭제

    adult taboo stories

  98. mom daughter sex

    Tracked from mom and son sex 2009/10/03 09:10  삭제

    mom and son sex galleries

  99. incest pictures

    Tracked from incest mother and daughter 2009/10/03 12:44  삭제

    incest rape

  100. daughter fucking incest porn

    Tracked from free incest porn stories 2009/10/04 07:11  삭제

    porn incest

  101. Family Fucking

    Tracked from Amateur Incest Family Porn 2009/10/04 08:15  삭제

    family orgy

  102. bdsm playpen

    Tracked from bdsm porn 2009/10/20 09:27  삭제

    bdsm sex

  103. bdsm cafe

    Tracked from bdsm cartoons 2009/10/20 10:49  삭제

    bdsm clips

  104. anime bdsm

    Tracked from asian bdsm 2009/10/20 11:06  삭제

    bdsm 666

  105. bdsm tgp

    Tracked from bdsm thumbs 2009/10/21 12:46  삭제

    bdsm toons

  106. vintage bondage

    Tracked from water bondage 2009/10/21 17:57  삭제

    women in bondage

  107. black bondage

    Tracked from black fox bondage 2009/10/22 10:17  삭제

    bondage anal

  108. free bdsm videos

    Tracked from gay bdsm 2009/10/22 13:36  삭제

    hentai bdsm

  109. bdsm humiliation

    Tracked from bdsm library 2009/10/22 15:16  삭제

    bdsm movies

  110. bondage anal

    Tracked from bondage and discipline 2009/10/23 18:46  삭제

    bondage anime

Comments List

  1. teen video movies 2008/05/24 01:29

Write a comment.

[로그인][오픈아이디란?]