scripts

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 94df05fafc1961876df8d5a0dd83ba047564fe04
parent 2cd941b7bc1dcaa2c0022b382269960692bcf4d6
Author: andrew.laack <andrew.laack@imbue.com>
Date:   Fri,  5 Sep 2025 01:39:41 -0500

Updated installation and added network testing script

Diffstat:
Minstallers/arch-install.sh | 2++
Anetwork-test.sh | 8++++++++
2 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/installers/arch-install.sh b/installers/arch-install.sh @@ -18,6 +18,8 @@ sudo pacman -Sy newsboat sudo pacman -Sy torbrowser-launcher sudo systemctl enable tor sudo systemctl start tor +sudo systemctl start zip +sudo systemctl start unzip git clone ssh://brgr/home/shared/git/public-repos/dotfiles.git mv dotfiles .config diff --git a/network-test.sh b/network-test.sh @@ -0,0 +1,8 @@ +while true; do + FILENAME=$(hexdump -n 16 -v -e '/1 "%02X"' -e '/16 "\n"' /dev/urandom) + echo $FILENAME + dd if=/dev/random of=/dev/shm/$FILENAME.zip bs=100M count=1 + rclone copy /dev/shm google-drive:backup --progress + rclone deletefile google-drive:backup/$FILENAME.zip + rm /dev/shm/$FILENAME.zip +done