This commit is contained in:
2025-06-14 02:49:26 -06:00
parent 46828306a7
commit a8a68f3bb0
2 changed files with 8 additions and 11 deletions
+6 -6
View File
@@ -41,20 +41,20 @@
4. Configure settings as you like them 4. Configure settings as you like them
5. Burn 5. Burn
#### Login to Raspberry Pi #### Login to Raspberry Pi
1. `curl -s https://raw.githubusercontent.com/PrincessPi3/Precision-Timekeeping-Fuckery/refs/heads/main/installer_auto.sh?nocache=$RANDOM | $SHELL` 1. `curl -s https://raw.githubusercontent.com/PrincessPi3/Precision-Timekeeping-Fuckery/refs/heads/main/installer_auto.sh?nocache=$RANDOM | $SHELL && cd ~/Precision-Timekeeping-Fuckery && bash installer1.sh`
2. `cd ~/Precision-Timekeeping-Fuckery && bash installer2.sh` (will reboot) 2. `cd ~/Precision-Timekeeping-Fuckery && bash installer2.sh` (will reboot)
3. `cd ~/Precision-Timekeeping-Fuckery && bash installer3.sh` (will reboot) 3. `cd ~/Precision-Timekeeping-Fuckery && bash installer3.sh` (will reboot)
5. `cd ~/Precision-Timekeeping-Fuckery && bash installer4.sh` (will reboot) 4. `cd ~/Precision-Timekeeping-Fuckery && bash installer4.sh` (will reboot)
6. `curl -s https://gitlab.com/princesspi/general-scripts-and-system-ssssssetup/-/raw/master/customscripts/install_script.sh?nocache=$RANDOM | sudo $SHELL` 5. `curl -s https://gitlab.com/princesspi/general-scripts-and-system-ssssssetup/-/raw/master/customscripts/install_script.sh?nocache=$RANDOM | sudo $SHELL`
7. `exec $SHELL` 6. `exec $SHELL`
8. Grafana 7. Grafana
1. open grafana web interface in a browser: `http://<ip>:3000` 1. open grafana web interface in a browser: `http://<ip>:3000`
2. username `admin` password `admin` 2. username `admin` password `admin`
3. set new password 3. set new password
4. Dashboards->Import 4. Dashboards->Import
1. Upload Garfana-Visualization.json 1. Upload Garfana-Visualization.json
5. edit each graph and just save 5. edit each graph and just save
9. After 24 Hours 8. After 24 Hours
1. `cd ~/Precision-Timekeeping-Fuckery` 1. `cd ~/Precision-Timekeeping-Fuckery`
2. `bash services.sh stop` 2. `bash services.sh stop`
3. `bash nuke_logs.sh` 3. `bash nuke_logs.sh`
+2 -5
View File
@@ -10,10 +10,10 @@ else
fi fi
echo "Updating Software Lists" echo "Updating Software Lists"
sudo apt update > /dev/null sudo apt update 1>/dev/null 2>/dev/null
echo "Installing git" echo "Installing git"
sudo apt install git -y > /dev/null sudo apt install git -y 1>/dev/null 2>/dev/null
echo "Cloning Repo" echo "Cloning Repo"
cd /home/$username cd /home/$username
@@ -22,6 +22,3 @@ cd /home/$username/Precision-Timekeeping-Fuckery
echo "Stage 1 Complete" echo "Stage 1 Complete"
echo "installer_auto.sh complete" > ./status.txt echo "installer_auto.sh complete" > ./status.txt
echo "Running installer1.sh"
bash installer1.sh