Skip to content

Instantly share code, notes, and snippets.

How to Install Nvidia Drivers on Proxmox

  1. Your /etc/apt/sources.list should look like this:
deb http://ftp.us.debian.org/debian bullseye main contrib non-free

deb http://ftp.us.debian.org/debian bullseye-updates main contrib non-free

# security updates
deb http://security.debian.org bullseye-security main contrib
@0x676e67
0x676e67 / git-remove-history.sh
Created March 12, 2024 13:37 — forked from JackDanger/git-remove-history.sh
remove large binary files from git history
#!/bin/bash
set -o errexit
# Author: David Underhill
# Script to permanently delete files/folders from your git repository. To use
# it, cd to your repository's root and then run the script with a list of paths
# you want to delete, e.g., git-delete-history path1 path2
#
# retrieved from: http://dound.com/2009/04/git-forever-remove-files-or-folders-from-history/
#