From 6411a36971a5d48e0805605692c92664091406bf Mon Sep 17 00:00:00 2001 From: PrincessPi3 Date: Tue, 3 Jun 2025 08:55:07 -0600 Subject: [PATCH] 1748962508 --- installer1.sh | 8 +++----- installer2.sh | 6 +++--- installer3.sh | 4 ++-- 3 files changed, 8 insertions(+), 10 deletions(-) diff --git a/installer1.sh b/installer1.sh index d0d17e3..23d82e7 100644 --- a/installer1.sh +++ b/installer1.sh @@ -1,15 +1,13 @@ #!/bin/bash set -e -sudo apt update - # updoot echo "Updating software lists..." -sudo apt update 1>/dev/null +sudo apt update 1>/dev/null 2>/dev/null echo "Installing utils..." -sudo apt install raspi-utils 1>/dev/null -sudo apt install "raspi*" 1>/dev/null +sudo apt install raspi-utils +sudo apt install "raspi*" # updoot this echo "Updating this repo..." diff --git a/installer2.sh b/installer2.sh index 83b5a51..4607fbf 100644 --- a/installer2.sh +++ b/installer2.sh @@ -6,13 +6,13 @@ git pull 1>/dev/null # updoot echo "Updating software lists..." -sudo apt update 1>/dev/null +sudo apt update echo "Fully upgrading, this may take a while..." -sudo apt dist-upgrade -y 1>/dev/null +sudo apt dist-upgrade -y echo "Cleaning up..." -sudo apt autoremove -y 1>/dev/null +sudo apt autoremove -y echo "Part 2 done!" echo "Rebooting now!" diff --git a/installer3.sh b/installer3.sh index f085d7e..5ccce57 100644 --- a/installer3.sh +++ b/installer3.sh @@ -38,11 +38,11 @@ echo "Disabling unneeded junk..." sudo systemctl disable bluetooth 1>/dev/null 2>/dev/null echo "Purging unneeded junk..." -sudo apt purge -y bluetooth* usb* wireless* pci* fonts* build-essential bluez* alsa* 1>/dev/null +sudo apt purge -y "bluetooth*" "usb*" "wireless*" "pci*" "fonts*" build-essential "bluez*" "alsa*" # install da packages echo "Installing packages, this may take a while..." -sudo apt install -y telegraf grafana influxdb pps-tools gpsd gpsd-clients chrony syslog-ng gh lynx btop htop iptraf iotop neovim netcat-traditional 1>/dev/null +sudo apt install -y telegraf grafana influxdb pps-tools gpsd gpsd-clients chrony syslog-ng gh lynx btop htop iptraf iotop neovim netcat-traditional # check if /boot/firmware/config.txt is configured yet grep -q -e "GPS PPS signals" /boot/firmware/config.txt