Find the proper driver at the NVidia website.
Note: Make sure to select "Linux 64-bit" as your OS
Hit the "Search" button.
# Generate new CSR and private key | |
openssl req -out CSR.csr -new -newkey rsa:2048 -nodes -keyout privateKey.key | |
# Generate new self-signed certificate | |
openssl req -x509 -sha256 -nodes -days 365 -newkey rsa:2048 -keyout privateKey.key -out certificate.crt | |
# Generate a new CSR from existing private key | |
openssl req -out CSR.csr -key privateKey.key -new | |
# Generate new CSR from certificate (must have private key) |
Find the proper driver at the NVidia website.
Note: Make sure to select "Linux 64-bit" as your OS
Hit the "Search" button.
Install a working (and compiled) version of virt-viewer. You may view the homebrew package's upstream source on GitHub.
brew tap jeffreywildman/homebrew-virt-manager
brew install virt-viewer
Once that's installed should be able make a call remote-viewer
with a pve-spice.vv file downloaded from proxmox web interface
# explicitly define host-ip mappings | |
address=/myapp.local/172.16.1.2 | |
# dnsmasq entries are always wildcard entries, so this maps both myapp.local and *.myapp.local | |
# (yes, it's fine for this to be your entire dnsmasq config. the defaults are pretty sensible) |
blueprint: | |
name: Bathroom Humidity Exhaust Fan | |
description: > | |
# ๐ฟ Bathroom Humidity Exhaust Fan | |
**Version: 2.6** | |
Step into the future of freshness - customize it your way and experience the convenience of automated humidity control! ๐ฟ๐ฟ | |
# Trying to do a PID for the daikin | |
# | |
# This is a WIP prototype. Only heating was tested. | |
# Using log.error because I can't seem to be able to find how to read other log levels. | |
from random import choices | |
ENABLED = True # Disabled if False. If true, the PID takes over when the Daikin is on. | |
target_temp = 22.5 |