FIRO Masternodes monitor

The following script, creates an HTML file, to be presented by any webserver #!/bin/bash # --- Configuration --- OUTPUT_FILE="/path_to_output_file/firo_nodes.html" # Define your nodes in the format: "Alias:IP_Address:SSH_User" NODES=( "SRV5:aa.bb.xx.xx:user" "Big1:xxx.zz.xxx.aa:user" "Big2:yyy.bb.yyy.tt:user" ) FIRO_CLI="/usr/local/bin/firo-cli" # ---------------------…

Rocky Linux adjustments

  dnf update -ydnf install epel-release -ydnf install htop -ysudo dnf autoremove systemctl stop kdumpsystemctl disable kdumpvi /etc/default/grub (=no)grub2-mkconfig --update-bls-cmdline -o /boot/grub2/grub.cfg sudo fallocate -l 2G /swapfilesudo chmod 600 /swapfilels -lh /swapfilesudo mkswap /swapfilesudo swapon…