博文

目前显示的是 一月, 2025的博文

cloudflare ddns on linux (ubuntu)

github https://github.com/K0p1-Git/cloudflare-ddns-updater/tree/main youtube https://www.youtube.com/watch?v=rI-XxnyWFnM git clone https://github.com/K0p1-Git/cloudflare-ddns-updater.git use "ls" and "cd" , go to the folder of the cloudflare-template.sh nano cloudflare-template.sh auth_email="kppit88@gmail.com" # The email used to login 'https://dash> auth_method="global" # Set to "global" for Global API Key auth_key="" # Your API Token zone_identifier="" # Can be found in the Zone ID record_name="name.domain.com" fill in the all in info in .sh chmod +x cloudflare-template.sh nano /etc/crontab edit the crontab every 1 hour 0 1 * * * root /bin/bash /root/cloudflare-ddns-updater/cloudflare-template.sh systemctl restart cron

Issues running PVE Post Install scripts on 8.3

I had the same issue. download the script:  wget https://github.com/tteck/Proxmox/raw/main/misc/post-pve-install.sh make it executable: chmod 777 post-pve-install.sh edit the script: nano post-pve-install.sh scroll down and change the line that says if ! pveversion | grep -Eq "pve-manager/8.[0-2]"; then change the [0-2] to [0-3] if ! pveversion | grep -Eq "pve-manager/8.[0-3]"; then exit with <ctrl> x and save it run the file with  ./post-pve-install.sh site: https://www.reddit.com/r/Proxmox/comments/1gxd9nj/issues_running_pve_post_install_scripts_on_83/