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”

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”

Pritunl

Debian (Jessie) install commands: (If using LXC Debian template, you’ll need to install systemd first) sudo nano /etc/apt/sources.list.d/mongodb-org-3.0.list deb http://repo.mongodb.org/apt/debian wheezy/mongodb-org/3.0 main sudo nano /etc/apt/sources.list.d/pritunl.list deb http://repo.pritunl.com/stable/apt jessie main sudo apt-key adv –keyserver hkp://keyserver.ubuntu.com –recv 7F0CEB10 sudo apt-key adv –keyserver hkp://keyserver.ubuntu.com –recv CF8E292A sudo apt-get update sudo apt-get install pritunl mongodb-org sudo systemctl start mongod pritunl sudo systemctl … Continue reading “Pritunl”