@cryptotaxi247 / netdata-1 / commits / 99255b91a

Update documentation with new dependencies (#11373)

Timotej S committed Jan 21, 2022 at 09:42 UTC 99255b91af4dec0c9fe5c977eb396d454b4b910c
2 files changed +6 -4
packaging/installer/methods/manual.md
+5 -4
@@ -67,16 +67,16 @@ This is how to do it by hand:
67
68 ```sh
69 # Debian / Ubuntu
70 -apt-get install zlib1g-dev uuid-dev libuv1-dev liblz4-dev libjudy-dev libssl-dev libelf-dev libmnl-dev gcc make git autoconf autoconf-archive autogen automake pkg-config curl python cmake
70 +apt-get install zlib1g-dev uuid-dev libuv1-dev liblz4-dev libjudy-dev libssl-dev libelf-dev libmnl-dev libprotobuf-dev protobuf-compiler gcc g++ make git autoconf autoconf-archive autogen automake pkg-config curl python cmake
71
72 # Fedora
73 -dnf install zlib-devel libuuid-devel libuv-devel lz4-devel Judy-devel openssl-devel elfutils-libelf-devel libmnl-devel gcc make git autoconf autoconf-archive autogen automake pkgconfig curl findutils python cmake
73 +dnf install zlib-devel libuuid-devel libuv-devel lz4-devel Judy-devel openssl-devel elfutils-libelf-devel libmnl-devel protobuf-devel protobuf-compiler gcc gcc-c++ make git autoconf autoconf-archive autogen automake pkgconfig curl findutils python cmake
74
75 # CentOS / Red Hat Enterprise Linux
76 -yum install autoconf automake curl gcc git libmnl-devel libuuid-devel openssl-devel libuv-devel lz4-devel Judy-devel elfutils-libelf-devel make nc pkgconfig python zlib-devel cmake
76 +yum install autoconf automake curl gcc gcc-c++ git libmnl-devel libuuid-devel openssl-devel libuv-devel lz4-devel Judy-devel elfutils-libelf-devel protobuf protobuf-devel protobuf-compiler make nc pkgconfig python zlib-devel cmake
77
78 # openSUSE
79 -zypper install zlib-devel libuuid-devel libuv-devel liblz4-devel judy-devel libopenssl-devel libelf-devel libmnl-devel gcc make git autoconf autoconf-archive autogen automake pkgconfig curl findutils python cmake
79 +zypper install zlib-devel libuuid-devel libuv-devel liblz4-devel judy-devel libopenssl-devel libelf-devel libmnl-devel protobuf-devel gcc gcc-c++ make git autoconf autoconf-archive autogen automake pkgconfig curl findutils python cmake
80 ```
81
82 Once Netdata is compiled, to run it the following packages are required (already installed using the above commands):
@@ -128,6 +128,7 @@ Netdata Cloud support may require the following packages to be installed:
128 |:---------:|--------------------------------------------------------------------------------------------------------------------------------------|
129 | `cmake` | Needed at build time if you aren't using your distribution's version of libwebsockets or are building on a platform other than Linux |
130 | `openssl` | Needed to secure communications with the Netdata Cloud |
131 +| `protobuf`| Used for the new Cloud<->Agent binary protocol
132
133 *Netdata will greatly benefit if you have the above packages installed, but it will still work without them.*
134
packaging/installer/methods/source.md
+1
@@ -38,6 +38,7 @@ Additionally, the following build time features require additional dependencies:
38 - A recent version of CMake
39 - OpenSSL 1.0.2 or newer _or_ LibreSSL 3.0.0 or newer.
40 - JSON-C (may be provided by the user as shown below, or by the system)
41 + - protobuf (Google Protocol Buffers) and protoc compiler
42
43 ## Preparing the source tree
44