Simple how-to to remind me how to use the locally mounted guest tools install.
- Select
guest-tools.isoand mount.
Simple how-to to remind me how to use the locally mounted guest tools install.
guest-tools.iso and mount.| for cert in *.crt; do | |
| mv $cert $cert.bak | |
| cat $cert.bak | tr -d '\r\n' > $cert | |
| done |
REF: https://deliciousbrains.com/ssl-certificate-authority-for-local-https-development/
openssl genrsa -des3 -out myCA.key 2048
| # 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) |
REF: https://linuxconfig.org/how-to-refresh-xenserver-s-storage-repository-to-include-newly-added-items
Copy link address from browser. wget ISO to local XCP-ng host. Below example is CentOS Stream 8 from a mirror.
REF: http://isoredirect.centos.org/centos/8-stream/isos/x86_64/
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.
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