Update freebsd.md (#8643)
More detailed description how to install from packages collection
Thorsten committed
May 15, 2020 at 16:26 UTC
99e6a288dedd0ae1a9b486f11819d8b77c194b49
1 file changed
+10
-1
packaging/installer/methods/freebsd.md
+10
-1
@@ -7,8 +7,17 @@ custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/instal
7
8
# Install Netdata on FreeBSD
9
10
-You can install Netdata from either the `ports` or `packages` collections.
10
+## Install from ports/packages
11
+You can install Netdata from either the `ports` or `packages` collections. To install from packages:
12
+```sh
13
+# pkg install netdata
14
+```
15
+You also need to enable the netdata service in `/etc/rc.conf` (add `netdata_enable="YES"`) and start the service:
16
+```sh
17
+# service netdata start
18
+```
19
20
+## Install latest version
21
This is how to install the latest Netdata version from source on FreeBSD:
22
23
```sh