GPU: Intel Corporation DG2 [Arc A310] [8086:56a6] (rev 05) Platform: Proxmox VE 8.x+
The /dev/dri/renderD128 device randomly vanishes, breaking hardware transcoding (Jellyfin, Plex, etc.) and any other GPU-dependent workloads.
GPU: Intel Corporation DG2 [Arc A310] [8086:56a6] (rev 05) Platform: Proxmox VE 8.x+
The /dev/dri/renderD128 device randomly vanishes, breaking hardware transcoding (Jellyfin, Plex, etc.) and any other GPU-dependent workloads.
| #!/bin/bash -ex | |
| sudo apt update -y | |
| sudo apt upgrade -y | |
| sudo apt install cloud-init qemu-guest-agent -y | |
| sudo apt clean | |
| sudo apt autoremove | |
| sudo rm /etc/ssh/ssh_host_* | |
| sudo truncate -s 0 /etc/machine-id |
| date time [thread name/id ] file:line v | | |
| 2024-06-06 22:27:09 [MainThread ] Log.cpp:285 INFO| Opened log file Hades II.log | |
| 2024-06-06 22:27:09 [MainThread ] Program.cpp:2142 INFO| Previous stack guard size was 0 bytes | |
| 2024-06-06 22:27:09 [MainThread ] OptionSet.cpp:157 INFO| argument: /c | |
| 2024-06-06 22:27:09 [MainThread ] OptionSet.cpp:157 INFO| argument: ../ | |
| 2024-06-06 22:27:09 [MainThread ] OptionSet.cpp:157 INFO| argument: /steampowered | |
| 2024-06-06 22:27:09 [MainThread ] OptionSet.cpp:157 INFO| argument: /VerboseScriptLogging=false | |
| 2024-06-06 22:27:09 [MainThread ] OptionSet.cpp:157 INFO| argument: /DebugKeysEnabled=false | |
| 2024-06-06 22:27:09 [MainThread ] OptionSet.cpp:157 INFO| argument: /UnsafeDebugKeysEnabled=false | |
| 2024-06-06 22:27:09 [MainThread ] OptionSet.cpp:157 INFO| argument: /LiveCreateTextures=false |
| #!/bin/bash | |
| # How to use: | |
| # Store this file as .git/hooks/pre-commit and make it executable | |
| # Or, to share the hook with your team, store as .githooks/pre-commit, | |
| # make this file executable and run: | |
| # git config core.hooksPath .githooks | |
| # A pre-commit hook for go projects. In addition to the standard |
| #!/bin/bash | |
| # tardiff tar1.tar.gz tar2.tar.gz | |
| diff -q <(tar -xOvzf $1 | rev | cut -d\/ -f1 | rev) <(tar -xOvzf $2 | rev | cut -d\/ -f1 | rev) |
| package config | |
| import ( | |
| "errors" | |
| "fmt" | |
| "os" | |
| "reflect" | |
| "strconv" | |
| "strings" |
| package config | |
| import ( | |
| "errors" | |
| "fmt" | |
| "log" | |
| "net/url" | |
| "os" | |
| "strings" | |
| "sync" |
| package form | |
| import ( | |
| "io" | |
| "net/url" | |
| "strings" | |
| "github.com/lestrrat-go/jwx/jwt" | |
| ) |
| package client | |
| import ( | |
| "sync" | |
| "github.com/go-resty/resty/v2" | |
| ) | |
| var ( | |
| factoryOnce sync.Once |
| FROM golang:latest AS builder | |
| ##### Only for PRIVATE git repositories ##### | |
| # required credentials for go package repositories | |
| # bitbucket user and token MUST be either URL encoded or only contain alphanumeric characters. | |
| # Kaniko --build-arg ${item.key}=${item.value} " | |
| #ARG BITBUCKET_USER | |
| #ARG BITBUCKET_TOKEN | |
| #ARG BITBUCKET_DOMAIN |