Skip to content

Instantly share code, notes, and snippets.

@cmd-not-found
cmd-not-found / xcp-ng-guest-tools-install.md
Created May 24, 2021 02:37
XCP-ng Guest Tools Installation

XCP-ng Guest Tools Install

Simple how-to to remind me how to use the locally mounted guest tools install.

REF: https://xcp-ng.org/docs/guests.html

Mount ISO and Install

  1. Select guest-tools.iso and mount.
@cmd-not-found
cmd-not-found / unifi-ssl-cert-clean.sh
Created April 25, 2021 01:11
Unifi SSL Certificate Cleanup
for cert in *.crt; do
mv $cert $cert.bak
cat $cert.bak | tr -d '\r\n' > $cert
done
@cmd-not-found
cmd-not-found / self-signed-root-ca.md
Last active April 7, 2024 20:23
Self Signed Root Certificate
# This is an example of capturing the traceback of an exception
# It demonstrates the data available, including the type of Exeption subclass, the value, and the tracebook object.
try:
print(test[2])
except:
tb = sys.exc_info()
for i in tb:
print(i)
@cmd-not-found
cmd-not-found / xcp-ng add iso.md
Created April 11, 2021 14:43
XCP-ng add ISO and refresh ISO storage repository
@cmd-not-found
cmd-not-found / synapse-bootstrap.md
Last active August 26, 2020 02:21
Start Using Vertex Synapse Project Locally

GETTING STARTED WITH VERTEX SYNAPSE

These are some rough notes collected via MacDown while exploring the latest v2.7.0 of the Vertex Synapse Project. Just starting from scratch in a local dev environment on my Mac.

SET UP DEV ENVIRONMENT

This makes some assumptions that you have pyenv installed to manage local Python versions. Using python 3.7.x since the project is based on 3.7 - uncertain of support for 3.8+.

jberry@Metaverse projects % mkdir synapse-dev