Installing Nvidia Driver on Debian 11 for passthrough to docker (Emby, Plex, etc)

I already tried to install drivers In case you already installed some drivers, purge them: sudo apt-get -s purge 'nvidia-*' and update initramfs: sudo update-initramfs -u Clean install Driver installation Add contrib and non-free repo: sudo nano /etc/apt/sources.list and change the line deb http://deb.debian.org/debian/ bullseye main so it looks like deb http://deb.debian.org/debian/ bullseye main contrib non-free Ctrl +x to save, hit Y for yes Now install the Debian 11 driver:...

November 1, 2022 · Gabe

Iptables fix for Docker on Synology

Using a Reverseproxy, or something like pihole, you might have run into the issue of not seeing the correct IPs in the log files. This is annoying if you want to use something like fail2ban for example. Add the script to the task scheduler, or save it as script that you execute via task scheduler on your Syno. To remove it, just remove the script and reboot your Syno. #!/bin/bash currentAttempt=0 totalAttempts=10 delay=15 while [ $currentAttempt -lt $totalAttempts ] do currentAttempt=$(( $currentAttempt + 1 )) echo "Attempt $currentAttempt of $totalAttempts....

June 23, 2023 · Gabe