Skip to content

Instantly share code, notes, and snippets.

View azsde's full-sized avatar

Azsde azsde

View GitHub Profile

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