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…

EA6700 adjustments

trying to recover a non-functional LINKSYS EA6700: 32k nvram bug and default linksys firmware overheating this mean CFE replacement and USB bug fix relevant links which i used: http://www.linksysinfo.org/index.php?threads/xvortex-or-advancedtomato-on-ea6900-v1-v1-1-without-32k-bug-renew.74084/ http://www.linksysinfo.org/index.php?threads/asuswrt-merlin-build-384-5-or-later-on-linksys-ea6900-or-ea6700.74209/

Busybox notes

Some notes from my busybox implementation: for fortran support –enable-languages=f77 in gcc. after compilation make the soft link : ln -s /path-to-g77 /bin/g77 inittab :: wait:-/bin/sh for automated login no Correct Hostname value in this…