Wireguard on Proxmox

Wireguard on proxmox: https://securityboulevard.com/2019/04/howto-install-wireguard-in-an-unprivileged-container-proxmox/ https://www.digitalocean.com/community/tutorials/how-to-create-a-point-to-point-vpn-with-wireguard-on-ubuntu-16-04 https://wiki.archlinux.org/index.php/WireGuard Add Wireguard debian unstable source echo “deb http://deb.debian.org/debian/ unstable main” > /etc/apt/sources.list.d/unstable-wireguard.list printf ‘Package: *\nPin: release a=unstable\nPin-Priority: 90\n’ > /etc/apt/preferences.d/limit-unstable Update, install wireguard and kernel headers apt update apt install wireguard pve-headers Run DKMS autoinstall, probe kernel module, and add to conf file dkms autoinstall modprobe wireguard echo “wireguard” … Continue reading “Wireguard on Proxmox”

Deluge web UI disable password

## Allow correct AND incorrect password to be submitted sed -i ‘s/if s.hexdigest() == config\[“pwd_sha1″\]:/if True:/’ /usr/lib/python2.7/dist-packages/deluge/ui/web/auth.py ## Auto submit blank password sed -i ‘s/onShow:function(){this.passwordField.focus(.*)}/onShow:function(){this.onLogin();}/’ /usr/lib/python2.7/dist-packages/deluge/ui/web/js/deluge-all.js https://forum.deluge-torrent.org/viewtopic.php?f=7&t=54769&p=227493 https://dukrat.net/124/deluge-webui-1-3-6-autologin-disable-password

mergerFS

If you don’t have them yet, install mergerfs and fuse. sudo apt-get install mergerfs fuse   #Pool disks UUID=”0a268f7b-53ad-40c2-917c-0c1d9f6f5bf1″ /media/disk0 ext4 defaults,errors=remount-ro 0 2 #4TB WD WD-WCC4E2R##### (Slot 0) UUID=”48faa7f4-8073-47f3-b7f8-f8a1bb72ea70″ /media/disk1 ext4 defaults,errors=remount-ro 0 2 #4TB HGST PK1334PEJ##### (Slot 1) UUID=”f42d3b98-afab-4ead-add0-ab1c9ba4adf5″ /media/disk2 ext4 defaults,errors=remount-ro 0 2 #4TB HGST PK2334PEK##### (Slot 2) UUID=”4e0f56f6-5d78-41c0-917d-03b6c7a20ee2″ /media/disk3 ext4 defaults,errors=remount-ro … Continue reading “mergerFS”

Proxmox PCIe Passthrough

Intel CPU Edit grub nano /etc/default/grub Change this: GRUB_CMDLINE_LINUX_DEFAULT=”quiet” To this: GRUB_CMDLINE_LINUX_DEFAULT=”quiet intel_iommu=on”   Add required kernel modules nano /etc/modules vfio vfio_iommu_type1 vfio_pci vfio_virqfd   IOMMU interrupt remapping 1) Run the “dmesg | grep ecap” command. 2) On the IOMMU lines, the hexadecimal value after “ecap” indicates whether interrupt remapping is supported. If the last character of … Continue reading “Proxmox PCIe Passthrough”