title |
---|
iperf3 notes |
iperf3: https://software.es.net/iperf/
Current version as of these notes: 3.18
title |
---|
iperf3 notes |
iperf3: https://software.es.net/iperf/
Current version as of these notes: 3.18
2024-09-25T07:54:57.568-0400 [INFO] Terraform version: 1.9.5 | |
2024-09-25T07:54:57.570-0400 [DEBUG] using github.com/hashicorp/go-tfe v1.58.0 | |
2024-09-25T07:54:57.570-0400 [DEBUG] using github.com/hashicorp/hcl/v2 v2.20.0 | |
2024-09-25T07:54:57.570-0400 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1 | |
2024-09-25T07:54:57.570-0400 [DEBUG] using github.com/zclconf/go-cty v1.14.4 | |
2024-09-25T07:54:57.570-0400 [INFO] Go runtime version: go1.22.5 | |
2024-09-25T07:54:57.570-0400 [INFO] CLI args: []string{"terraform", "plan"} | |
2024-09-25T07:54:57.570-0400 [DEBUG] Attempting to open CLI config file: /Users/jamegill/.terraformrc | |
2024-09-25T07:54:57.570-0400 [DEBUG] File doesn't exist, but doesn't need to. Ignoring. | |
2024-09-25T07:54:57.571-0400 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins |
#!/bin/sh | |
defaultUser="ImIOImI" | |
defaultEmail="troy.knapp@gmail.com" | |
rsaKeyFile=/home/cloudshell-user/.ssh/id_rsa | |
if [ ! -f "$rsaKeyFile" ]; then | |
#add rsa key | |
ssh-keygen -b 2048 -t rsa -f "$rsaKeyFile" -q -N "" | |
echo "Please copy the following into your GitHub profile here: https://github.com/settings/ssh/new | |
" |
The default firewall configuration of Oracle Linux in the OCI environment basically denies everything. To enable traffic of any kind these following commands are needed.
sudo systemctl status firewalld
sudo firewall-cmd --list-all
sudo firewall-cmd --zone=public
sudo firewall-cmd --zone=public --add-port=5201/tcp --permanent
sudo firewall-cmd --zone=public --add-port=5201/udp --permanent
This worked for me. It will probably work for you with minor touches if you insist. After I ran this for a while I didn't like how unreliable Duplicati was with the actual work of backing up and I began to investigate Duplicacy instead. I will leave this here for a year or so because it will probably remain more or less valid for that long and I did spend a lot of time putting it together to just thwack it because it's not useful to me. YMMV. GL. GG.
This is a note on installing Duplicati, a free Backup server into a TrueNAS Core jail.
In TrueNAS create a Jail running the latest FreeBSD image available (13.2-RELEASE-p4). I am calling this jail instance backup
https://github.com/sinedied/hads
A simple, markdown-based wiki written in Node. It does just enough for what I need and not much more.
Installed on TrueNas in a FreeBSD jail. HADS lives in /mnt/HADS/
pkg install setsid npm sudo
libcamera-vid -t 0 --listen -o tcp://0.0.0.0:8888
ffplay tcp://10.39.6.55:8888 -vf "setpts=N/30" -fflags nobuffer -flags low_delay -framedrop
Obviously, change the IP address in the client command to the IP or hostname of the raspberry pi. The picture quality isn't super great, but when setting up the frame for a time-lapse shot this gives a quick view of what's in the picture and may help with initial focus.
TEXT () { | |
# A colorful wrapper around echo takes up to three arguments. | |
# "the message" IN_<color> | |
IN_RED='\e[0;91m' | |
IN_GREEN='\e[0;92m' | |
IN_YELLOW='\e[0;93m' | |
IN_BLUE='\e[0;94m' | |
IN_PURPLE='\e[0;95m' | |
IN_CYAN='\e[0;96m' |
sudo curl -o /usr/local/bin/imgcat -O https://iterm2.com/utilities/imgcat && sudo chmod +x /usr/local/bin/imgcat |