Here's some docs on how I connected to OCTOI using a Raspberry Pi, an icE1usb, and my Cisco 2921 voice router.
I contacted LaF0rge from #retronetworking on libera.chat. He asked me to email him at (redacted).
Consider this gist to be deprecated. It's full of information that may or may not be correct, given recent findings. Consider the in-development PIDDatabase, and UMSKT, instead: https://umskt.github.io/PIDDatabase-viewer https://github.com/UMSKT/UMSKT
If you still want to see the old gist, see the last revision.
| #!/bin/bash | |
| ############################################################################## | |
| # An rclone backup script by Chris Tippett (c.tippett@gmail.com) | |
| # | |
| # Originally adapted from the great work by Jared Males (jaredmales@gmail.com) | |
| # https://gist.github.com/jaredmales/2f732254bb10002fc0549fa9aa0abdd7 | |
| # | |
| # Copyright (C) 2020 Chris Tippett (c.tippett@gmail.com) | |
| # |
DigitalOcean does not provide a way to download a snapshot of your droplet locally. You can use rsync to accomplish this instead.
On your local machine, assuming you have added your-server in your SSH config:
rsync -aAXHv --append-verify --exclude={"/dev/*","/proc/*","/sys/*","/tmp/*","/run/*","/mnt/*","/media/*","/lost+found"} your-server:/
-a : archive mode (all files, with permissions, etc.)-A : preserve ACLs/permissions (not included with -a)| #!/bin/bash | |
| ############################################################################## | |
| # An rclone backup script by Chris Tippett (c.tippett@gmail.com) | |
| # | |
| # Originally adapted from the great work by Jared Males (jaredmales@gmail.com) | |
| # https://gist.github.com/jaredmales/2f732254bb10002fc0549fa9aa0abdd7 | |
| # | |
| # Copyright (C) 2020 Chris Tippett (c.tippett@gmail.com) | |
| # |
| #!/bin/bash | |
| # Copyright (C) 2020 Kia | |
| # Licensed under Zero Clause BSD License | |
| if [[ $# -ne 3 ]]; then | |
| echo "usage: $0 (BMC I2C BUS NUMBER) (FAN PAGE) (DUTY CYCLE FLOOR)" | |
| echo "" | |
| echo "BMC I2C BUS NUMBER can be found as follows" |
Before starting, make sure you have a backup, and make sure to have a linux live boot ready to rescue your system. It's easy to mess this up!
gdisk /dev/sda
nto create a new partition. Needs to be about 1MB. You can probably squeeze this in from sectors 34-2047. UseLorlto look up the code for "BIOS boot" (ef02).
w
partprobe /dev/sda| <!doctype html> | |
| <title>Site Maintenance</title> | |
| <style> | |
| body { text-align: center; padding: 150px; } | |
| h1 { font-size: 50px; } | |
| body { font: 20px Helvetica, sans-serif; color: #333; } | |
| article { display: block; text-align: left; width: 650px; margin: 0 auto; } | |
| a { color: #dc8100; text-decoration: none; } | |
| a:hover { color: #333; text-decoration: none; } | |
| </style> |
| # Configuration suitable to display Apache/nginx access logs | |
| # Based on conf.proftpd by Pavol Domin | |
| # Crafted by Marcello Barnaba <vjt@openssl.it> | |
| # Get GRC at http://kassiopeia.juls.savba.sk/~garabik/software/grc.html | |
| # | |
| # ip number | |
| regexp=^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3} | |
| colours=bold magenta |