here are some operations for image space releasing:
sudo apt update
sudo apt upgrade
===skip===
it allows to descrease size image on 2++Gb
PS:I would like to add monitoring system into your project.
Now, I'm choosing from zabbix, munin and cacti. What would you advice?
or install byobu then you can run `sudo purge-old-kernels`
I use zabbix with grafana. Gives me telegram alerts and pretty graphs
*edit, forgot the closing )
Could you show how did you install setting of zabbix and grafana?
I'll write something up and post it to github and just link it here
send it to me in pm I will post it.
This is your pm lets hope it sticks:
I have Zabbix installed on a raspberry pi, agents on my miners
Server (Ubuntu steps
Pre-Reqs
Server install
sudo apt-get update
sudo apt-get install zabbix-server-mysql zabbix-frontend-php
sudo apt-get install zabbix-agent
mysql setup
mysql> create database zabbix character set utf8 collate utf8_bin
grant all privileges on zabbix.* to zabbix@localhost identified by 'your_password';
flush privileges;
quit;
Load up the DB
Put mysql pass in zabbix_server.conf
/etc/zabbix/zabbix_server.conf
Edit apache config for timezone
/etc/zabbix/apache.conf
Agent Install
sudo apt-get update
sudo apt-get install zabbix-agent
On the agent enable remote commands
/etc/zabbix/zabbig_agent.conf
Find EnableRemoteCommands and change it to
Now at the bottom of the zabbix_agent.conf you can create custom checks using userparameter
Example: (use grep, awk, cut etc to grab the specific data, this is for EWBF)
UserParameter=temp.gpu0,curl http://miner1:42000/getstat
Grafana, do a basic install and add in the zabbix plugin. That one is a bit detailed
Here is what mine looks like