Skip to content

Instantly share code, notes, and snippets.

View azsde's full-sized avatar

Azsde azsde

View GitHub Profile
@azsde
azsde / Google Coral Init Automation on Proxmox.md
Created December 22, 2024 12:43
Google Coral Init Automation on Proxmox

USB Google Coral Automation on Proxmox

Google did some weird stuff with their Google Coral USB, it has two different VID:PID depending on if the device has been initialized or not, which can cause issues when automating USB passthrough to a VM. Here are the instruction to overcome said issues:

Init the google coral automatically

  1. Go into /usr/local/bin/ and create a coral-init folder
cd /usr/local/bin
mkdir coral-init
@azsde
azsde / README.md
Last active March 6, 2025 03:50
How to share N100 vGPU in Proxmox

Intel N100 vGPU Sharing on Proxmox

1 - Install & Update Proxmox 8.2

1.1 - Update the kernel

Proxmox will need to run between version : proxmox-kernel-6.5.13-3-pve ~ 6.8.12-1-pve

Things are currently working using proxmox-kernel-6.8.12-1-pve.

1.2 Install strongtz i915 sriov dkms driver

  1. Clone this repo : https://github.com/strongtz/i915-sriov-dkms

Enable & Using vGPU Passthrough

This gist is almost entirely not unlike Derek Seaman's awesome blog:

Proxmox VE 8: Windows 11 vGPU (VT-d) Passthrough with Intel Alder Lake

As such please refer to that for pictures, here i will capture the command lines I used as i sequence the commands a little differently so it makes more logic to me.

This gists assumes you are not running ZFS and are not passing any other PCIE devices (as both of these can require addtional steps - see Derek's blog for more info)

Note:i made no changes to the BIOS defaults on the Intel Nuc 13th Gen. This just worked as-is.

@azsde
azsde / gist:e620cfc7460123d2b394d005ecdd1754
Created October 30, 2023 15:54
Fix R8168/R8169 ethernet issues on Proxmox 8.0
Fix N95 Ethernet issues on Proxmox 8.0
Step 1 - Edit /etc/apt/sources.list
- Add "non-free" at the end to the first two lines
- Add proxmox repository:
deb http://download.proxmox.com/debian/pve bookworm pve-no-subscription
Step 2 - Apt update
@azsde
azsde / README.md
Created February 20, 2023 09:35 — forked from Gadgetoid/README.md
Raspberry Pi Zero / Windows 10 automatic RNDIS driver install for composite gadgets

Preface

I owe my very rapid learning journey in the world of ConfigFs to several key sources which aren't necessarily relevant to this result, but I feel deserve a mention anyway.

@azsde
azsde / settings.json
Created July 17, 2018 12:49
Log File Highligther Logcat Customization
"files.associations": {
"*logcat*": "log",
"*.log.*": "log"
},
"logFileHighlighter.customPatterns": [
{
"pattern": "^[0-9\\- :\\.]*V.*",
"foreground": "#d7dae0"
},
{
@azsde
azsde / AutoWifiAp.sh
Last active February 7, 2023 16:41
AutoHostapdConfig
#!/bin/bash
if [ "$EUID" -ne 0 ]
then echo "Must be root"
exit
fi
if [[ $# -lt 2 ]];
then echo "Invalid input"
echo "Usage:"
@azsde
azsde / rPi3-ap-setup.sh
Created June 17, 2018 21:22 — forked from Lewiscowles1986/rPi3-ap-setup.sh
Raspberry Pi 3 / Zero W automated access-point-setup
#!/bin/bash
#
# This version uses September 2017 august stretch image, please use this image
#
if [ "$EUID" -ne 0 ]
then echo "Must be root"
exit
fi