Opengist

Explore

  • All gists
  • Topics
  • Users
Give feedback on the new UI Powered by Opengist ⋅ 65ms

user:thomas gists created by user

title:mygist gists with given title

description:sync gists with given description

filename:myfile.txt gists having files with given name

extension:yml gists having files with given extension

language:go gists having files with given language

topic:homelab gists with given topic

all:systemctl search all fields

Login
p

proxmox

Recently created Least recently created Recently updated Least recently updated
mreschke

mreschke / Samsung NVMe Firmware on Debian

Last active 1 month ago proxmox
0 0 1

BACKUP all data first. No guarantee this won't break your NVMe

Download the ISO from the Samsung SSD tools page.

Ex: wget https://download.semiconductor.samsung.com/resources/software-resources/Samsung_SSD_990_PRO_8B2QJXD7.iso

Install tools

sudo apt-get install -y gzip unzip wget cpio
mreschke

mreschke / Proxmox secondary_vm.sh

Last active 1 month ago proxmox

Adjust Nvidia Passthrough Device to Secondary Card

0 0 1
1 #!/bin/bash
2
3 # Set a secondary VM to use second NVIDIA card as PCI Passthrough
4 # And the bottom USB card. And REMOVE those 2 PCI devices from any other VM
5 # mReschke 2025-03-16
6
7 # Input
8 secondary_vmid="$1"
9 #primary=109
mreschke

mreschke / Proxmox primary_vm.sh

Last active 1 month ago proxmox

Adjust Nvidia Passthrough Device to Primary Card

0 0 1
1 #!/bin/bash
2
3 # Set a primary VM to use first NVIDIA card as PCI Passthrough
4 # And REMOVE those 2 PCI devices from any other VM
5 # mReschke 2025-03-16
6
7 # Input
8 primary_vmid="$1"
9 primary=109