Updated the docs to match new install script (#12042)
Fixing the get started page
Tina Luedtke committed
Jan 27, 2022 at 13:02 UTC
98f33197afd791aba63939008748357ac44e2508
1 file changed
+18
-49
docs/get-started.mdx
+18
-49
@@ -12,22 +12,33 @@ import { Install, InstallBox } from '../src/components/Install/'
12
# Get started with Netdata
13
14
Netdata is a free and open-source (FOSS) monitoring agent that collects thousands of hardware and software metrics from
15
-any physical or virtual system (we call them _nodes_) and organizes them in an easy-to-use and -navigate interface.
15
+any physical or virtual system (we call them _nodes_). These metrics are organized in an easy-to-use and -navigate interface.
16
17
Together with [Netdata Cloud](https://learn.netdata.cloud/docs/cloud), you can monitor your entire infrastructure in
18
-real time and troubleshoot problems that threaten the health of your nodes before they occur.
18
+real time and troubleshoot problems that threaten the health of your nodes.
19
20
Netdata runs permanently on all your physical/virtual servers, containers, cloud deployments, and edge/IoT devices. It
21
runs on Linux distributions (Ubuntu, Debian, CentOS, and more), container/microservice platforms (Kubernetes clusters,
22
Docker), and many other operating systems (FreeBSD, macOS), with no `sudo` required.
23
24
+## Install on Linux with one-line installer
25
+
26
+The **recommended** way to install Netdata on a Linux node (physical, virtual, container, IoT) is our one-line
27
+[kickstart script](/packaging/installer/methods/kickstart.md). This script automatically installs dependencies and
28
+builds Netdata from its source code.
29
+
30
+Copy the script, paste it into your node's terminal, and hit `Enter` to begin the installation process.
31
+
32
+<OneLineInstall />
33
+
34
+Jump down to [what's next](#whats-next) to learn how to view your new dashboard and take your next steps monitoring and
35
+troubleshooting with Netdata.
36
+
37
+## Other installation options
38
+
39
<Install>
40
<InstallBox
26
- to="#install-on-linux-with-one-line-installer-recommended"
27
- os="General Linux with one-line installer (recommended)"
28
- svg="linux" />
29
- <InstallBox
30
- to="#run-netdata-with-docker"
41
+ to="/docs/agent/packaging/docker"
42
os="Run with Docker"
43
svg="docker" />
44
<InstallBox
@@ -38,14 +49,6 @@ Docker), and many other operating systems (FreeBSD, macOS), with no `sudo` requi
49
to="/docs/agent/packaging/installer/methods/macos"
50
os="Install on macOS"
51
svg="macos" />
41
- <InstallBox
42
- to="/docs/agent/packaging/installer/methods/packages"
43
- os="Linux with .deb/.rpm packages"
44
- svg="linux" />
45
- <InstallBox
46
- to="/docs/agent/packaging/installer/methods/kickstart-64"
47
- os="Linux with static 64-bit binary"
48
- svg="linux" />
52
<InstallBox
53
to="/docs/agent/packaging/installer/methods/manual"
54
os="Linux from Git"
@@ -60,40 +63,6 @@ Docker), and many other operating systems (FreeBSD, macOS), with no `sudo` requi
63
svg="linux" />
64
</Install>
65
63
-## Install on Linux with one-line installer (recommended)
64
-
65
-The **recommended** way to install Netdata on a Linux node (physical, virtual, container, IoT) is our one-line
66
-[kickstart script](/packaging/installer/methods/kickstart.md). This script automatically installs dependencies and
67
-builds Netdata from its source code.
68
-
69
-Copy the script, paste it into your node's terminal, and hit `Enter` to begin the installation process.
70
-
71
-<OneLineInstall />
72
-
73
-Jump down to [what's next](#whats-next) to learn how to view your new dashboard and take your next steps monitoring and
74
-troubleshooting with Netdata.
75
-
76
-## Run Netdata with Docker
77
-
78
-You can also try out Netdata's capabilities in a [Docker container](/packaging/docker/README.md). Copy the following
79
-`docker run` command into your node and hit `Enter` to download and run the container.
80
-
81
-```bash
82
-docker run -d --name=netdata \
83
- -p 19999:19999 \
84
- -v netdataconfig:/etc/netdata \
85
- -v netdatalib:/var/lib/netdata \
86
- -v netdatacache:/var/cache/netdata \
87
- -v /etc/passwd:/host/etc/passwd:ro \
88
- -v /etc/group:/host/etc/group:ro \
89
- -v /proc:/host/proc:ro \
90
- -v /sys:/host/sys:ro \
91
- -v /etc/os-release:/host/etc/os-release:ro \
92
- --restart unless-stopped \
93
- --cap-add SYS_PTRACE \
94
- --security-opt apparmor=unconfined \
95
- netdata/netdata
96
-```
66
67
## What's next?
68