bme680-homekit/prometheus/install.sh

10 lines
319 B
Bash
Raw Normal View History

2022-06-13 11:00:45 +00:00
wget https://github.com/prometheus/prometheus/releases/download/v2.36.1/prometheus-2.36.1.linux-armv6.tar.gz
tar -xzvf prometheus-2.36.1.linux-armv6.tar.gz
rm prometheus-2.36.1.linux-armv6.tar.gz
cp prometheus.service /etc/systemd/system
systemctl daemon-reload
systemctl start prometheus
systemctl enable prometheus