X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=README;h=24061549c8a201b5b2af50b3be59a3bf9189b125;hb=0cacae1b594f4ca0fc98798d119bfbad8f3bc6f5;hp=f34555cceabbef6fa0ce43579dc23aefe446dd61;hpb=b7d4060cacd04d4bd0e174e85f91ca5afcacf01d;p=collectd.git diff --git a/README b/README index f34555cc..24061549 100644 --- a/README +++ b/README @@ -277,16 +277,19 @@ Prerequisites platforms. * libcurl (optional) - If you want to use the `apache' plugin + If you want to use the `apache' and/or `nginx' plugins. * libiptc (optional) For querying iptables counters. * libmysqlclient (optional) + Unsurprisingly used by the `mysql' plugin. * libnetlink (optional) + Used, obviously, for the `netlink' plugin. * libnetsnmp (optional) + For the `snmp' plugin. * liboping (optional, if not found a version shipped with this distribution can be used) @@ -302,7 +305,7 @@ Prerequisites instead. * libsensors (optional) - To read from `lm_sensors'. + To read from `lm_sensors', see the `sensors' plugin. * libstatgrab may be used to collect statistics on systems other than Linux and/or Solaris. Note that CPU- and disk-statistics, while being provided @@ -322,6 +325,29 @@ Prerequisites particular. +Configuring / Compiling / Installing +------------------------------------ + + To configure, build and install collectd with the default settings, run + `./configure && make && make install'. For detailed, generic instructions + see INSTALL. For a complete list of configure options and their description, + run `./configure --help'. + + By default, the configure script will check for all build dependencies and + disable all plugins whose requirements cannot be fulfilled (any other plugin + will be enabled). To enable a plugin, install missing dependencies (see + section `Prerequisites' above) and rerun `configure'. If you specify the + `--enable-' configure option, you can force the plugin to be built. + This will most likely fail though unless you're working in a very unusual + setup and you really know what you're doing. + + By default, collectd will be installed into `/opt/collectd'. You can adjust + this setting by specifying the `--prefix' configure option - see INSTALL for + details. If you pass DESTDIR= to `make install', will be + prefixed to all installation directories. This might be useful when creating + packages for collectd. + + Crosscompiling --------------