This file contains hidden or 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 requests | |
import csv | |
import time | |
import os | |
from dotenv import load_dotenv | |
# Load environment variables from .env file | |
load_dotenv() | |
# Configuration |
This file contains hidden or 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
# In this script I take some notes in order to achieve a working vGPU setup with NVIDIA Quadro M4000 on Proxmox | |
# Do NOT use this script as is, read and follow through, some should execute on Host, later section on Guest. | |
# Pre-setup/Specs | |
# - Have a VM with Proxmox VE 8.2.4 (Kernel 6.8.8-4-pve) | |
# - Hardware specs for this setup: HP DL380 / Xeon E5-2680 v4 / 32GB Ram / Quadro M4000 | |
# - Make sure to undo any changes to PVE if you've applied passthrough | |
# Host Setup | |
# - Full guide from Polloloco: https://gitlab.com/polloloco/vgpu-proxmox |
This file contains hidden or 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 | |
## Install FFMPEG GIT Ubuntu 16.04 64Bits | |
## http://www.linuxpro.com.br/2017/04/compile-ffmpeg-nvenc-ubuntu/ | |
## Pacote Compilado no GITHUB: https://github.com/jniltinho/oficinadotux | |
## Run as root (sudo su) | |
## Links | |
## http://ftp.eq.uc.pt/software/Linux/deb-multimedia/pool/main/v/vid.stab/ | |
## https://gist.github.com/Brainiarc7/4b49f463a08377530df6cecb8171306a | |
## https://developer.nvidia.com/ffmpeg |