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
These keys have been tested to work. These are a combination of keys from Chinese websites, trial keys inside ISO's, auto-activate keys in OEM ISO's, and directly from Microsoft's website, all aggregated for your convenience.
In order to use these keys, you need the right edition of Windows XP/2003. Not just Home/Pro/Enteprise/etc, whether it's a Retail, OEM or Volume version. There's a clear cut way to check this.
#!/bin/bash | |
############################################################################## | |
# An rclone backup script by Chris Tippett ([email protected]) | |
# | |
# Originally adapted from the great work by Jared Males ([email protected]) | |
# https://gist.github.com/jaredmales/2f732254bb10002fc0549fa9aa0abdd7 | |
# | |
# Copyright (C) 2020 Chris Tippett ([email protected]) | |
# |
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 ([email protected]) | |
# | |
# Originally adapted from the great work by Jared Males ([email protected]) | |
# https://gist.github.com/jaredmales/2f732254bb10002fc0549fa9aa0abdd7 | |
# | |
# Copyright (C) 2020 Chris Tippett ([email protected]) | |
# |
#!/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
n
to create a new partition. Needs to be about 1MB. You can probably squeeze this in from sectors 34-2047. UseL
orl
to 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 <[email protected]> | |
# 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 |