This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
New PiHole | |
apt install zram-tools | |
nano /etc/default/zramswap | |
### | |
ALLOCATION=512 | |
### | |
systemctl enable zramswap |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
export PBS_PASSWORD="somepassword" | |
proxmox-backup-client backup pve-etc.pxar:/etc --include-dev /etc/pve --repository some.ip.or.dns:Backups > /dev/null | |
#Parameter descriptions | |
#The password of the user *on the target PBS server* that is running the script. If you run the script as user 'johndoe', the PBS server must have a user 'johndoe' on the system with proper ACLs in PBS and this is that user's password. If you're using LDAP or something non-local, that's a another story. | |
#export PBS_PASSWORD="somepassword" |