To setup in Microsoft Hyper-V VM, follow this Github Comment.
tpm2_main.patch
Instructions on how to enable Tboot.
Discussion thread: Tboot on Intel NUC8i7HVK and Fedora 33
dnf install -y cpuid
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.7" | |
services: | |
node-red: | |
image: nodered/node-red:latest | |
environment: | |
- TZ=America/Argentina | |
ports: | |
- "1880:1880" | |
networks: | |
- node-red-net |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM fedora:latest | |
RUN dnf install -y tpm2-pkcs11 tpm2-pkcs11-tools tpm2-tools gnutls-utils openssl-pkcs11 nodejs | |
VOLUME /etc/tpm2_pkcs11 | |
VOLUME /root/test | |
WORKDIR /root/test | |
CMD bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -euxo pipefail | |
# This script reproduces https://github.com/tpm2-software/tpm2-pkcs11/issues/67 | |
# WARNING: Clear the TPM and deletes the PKCS11 DB | |
# REQUIRES: | |
# dnf install -y tpm2-pkcs11 tpm2-pkcs11-tools tpm2-tools gnutls-utils openvpn | |
echo "OpenVPN Server Setup" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
import pandas as pd | |
import matplotlib.pyplot as plt | |
import matplotlib | |
import sys | |
import time | |
## Pre-procesar datos | |
ConfirmedCases_raw = pd.read_csv('https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_time_series/time_series_covid19_confirmed_global.csv') | |
Deaths_raw = pd.read_csv('https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_time_series/time_series_covid19_deaths_global.csv') |
NewerOlder