Skip to content

Instantly share code, notes, and snippets.

Ultimate Beginner's Guide to Proxmox GPU Passthrough

mirror of The Ultimate Beginner's Guide to GPU Passthrough (Proxmox, Windows 10) by /u/cjalas

>Welcome all, to the first installment of my Idiot Friendly tutorial series! I'll be guiding you through the process of configuring GPU Passthrough for your Proxmox Virtual Machine Guests. This guide is aimed at beginners to virtualization, particularly for Proxmox users. It is intended as an overall guide for passing through a GPU (or multiple GPUs) to your Virtual Machine(s). It is not intended as an all-exhaustive how-to guide; however, I will do my best to provide you with all the necessary resources and sources for the passthrough process, from start to finish. If something doesn't work properly, please check /r/Proxmox, /r/Homelab, /r/VFIO, or

@baod-rate
baod-rate / gtest.rb
Last active January 25, 2019 21:16 — forked from Kronuz/gtest.rb
Homebrew Formula for Google Test
# Homebrew Formula for Google Test
# from https://gist.github.com/Kronuz/96ac10fbd8472eb1e7566d740c4034f8
# Usage: brew install --HEAD https://gist.githubusercontent.com/qubidt/b4eb757fea01d2f64a3cead0d9fad72f/raw/gtest.rb
require 'formula'
class Gtest < Formula
desc "Google Test"
homepage "https://github.com/google/googletest"
head "git://github.com/google/googletest.git", :using => :git

Keybase proof

I hereby claim:

  • I am qubidt on github.
  • I am qubidt (https://keybase.io/qubidt) on keybase.
  • I have a public key ASB0iqDmPyL7Uygn_HftOujaDZz2G5YOyBZsgKkDMmfWOgo

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am qubidt on github.
  • I am qubidt (https://keybase.io/qubidt) on keybase.
  • I have a public key ASAP-X4KyVHfdoemsxQy8skHqnW00FXZd57grlDRiW3Rggo

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am qubidt on github.
  • I am qubidt (https://keybase.io/qubidt) on keybase.
  • I have a public key whose fingerprint is BC26 75AF 8CCF 6DCE 3F6B 2FB8 8660 902F 2A6C 1ED4

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am qubidt on github.
  • I am baotrinh (https://keybase.io/baotrinh) on keybase.
  • I have a public key ASAm3aGQYdC5_w4pxrloYJpGx2p2JmtFn9mgPam0J9wZNwo

To claim this, I am signing this object:

@baod-rate
baod-rate / subtree-merge.sh
Created July 22, 2015 14:24
merge a subdirectory from another repo while preserving history
# credit: http://jrsmith3.github.io/merging-a-subdirectory-from-another-repo-via-git-subtree.html
# Clone the target repo
git clone git@github.com:jclouds/jclouds.git
cd jclouds
# Add the source repository as a remote, and perform the initial fetch.
git remote add -f sourcerepo git@github.com:jclouds/jclouds-labs-openstack.git
# Create a branch based on the source repositories' branch that contains the state you want to copy.
git checkout -b staging-branch sourcerepo/master