/usr/bin/rrdtool: symbol lookup error: /usr/lib/x86_64-linux-gnu/libcairo.so.2: undefined symbol: FT_Get_Var_Design_Coordinates solution: delete /opt/lampp/lib/libfreetype.so.6
Month: November 2021
WireGuard in Proxmox LXC
in Proxmox Host: apt update apt install pve-headers nano /etc/apt/sources.list deb http://deb.debian.org/debian buster-backports main Save. apt update apt install -t buster-backports wireguard-dkms modprobe wireguard echo “wireguard” >> /etc/modules-load.d/modules.conf In LXC Container: apt install wireguard or use piVPN curl -L https://install.pivpn.io | bash
Wireguard Client Connect to Server
apt install wireguard Since we’re only connecting back to our VPN Server, we need to create a file where we will store our VPN profile information. To be clear, this is generated on the VPN server side. We are only copying the contents of the file so that we can authenticate with our VPN server….
Can’t set locale; make sure $LC_* and $LANG are correct!
fix – dpkg-reconfigure locales
nginx limit req
limit_req_zone $binary_remote_addr zone=login:10m rate=1r/s; limit_req zone=login burst=5;