Z Uber Move - Second Draft Of Plans

Updated Plans!

First up, the door install is set for Tuesday, February 11th. Once the door is in two of the libraries (the two working ones) will come inside. I'll probably end up using movers to handle getting the boxes, shelving, tool boxes, and other stuff out to the garage. Although I'm not sure yet if I'll try to get the libraries inside before, during, or after the movers come. 

Stupid Simple Python Script For Working With System vs ZFS Disks

This script helps identify what disks are in use (or not in use) by ZFS. It's a stupid-simple python 3 script that requires only 'sh'. You can get that via 'pip3 install sh'. 

#!/usr/bin/python3
import re
from sh import zpool,lsblk,ls
from pprint import pprint

print("Finding all disks")
sdisks = str(lsblk('-d').stdout)
# sdbl  67:240  0   7.3T  0 disk
alldisks = re.findall(r'(sd[a-z]+)\s+\d+:\d+\s+\d+\s+(.*?)\s+\d+\s+disk',sdisks,re.MULTILINE)
print("Found %d disks on system"%len(alldisks))

Tags

Ham Radio: The Old Guards vs Everyone Under 60

For those who aren't aware, there is a bit of controversy in the ham radio community at the moment around Winlink. The tl;dr here is that a bunch of boaters started getting ham radio license so they could use Winlink to send and receive email when they're out at sea.

The problems started when a few of them started using it for more than personal use - they were using it commercially. This is strictly prohibited with ham radio. This is compounded by some of the boaters not using it properly; they'd use it on frequencies already in use by others at that time.

i6000 - /etc/hosts

Static Hostnames

10.22.0.202   gibson6
10.10.1.1       M000127
10.10.1.2       R000117


# IOB lookups, do not modify anything after this in the file
#Frame 1
10.10.0.1       I0000001
10.10.0.3       I0000031
10.10.0.5       I0000051
10.10.0.6       I0000061
10.10.0.9       I0000091
10.10.0.10      I0000101
10.10.0.28      M0000281

Subscribe to