Search results

  1. C

    [TUTORIAL] Examples on how to mount PBS backup images for file level restoring

    Interestingly, I'm trying this out with the PVE integration... When I'm trying to mount a snapshot of a VM on the PBS server to browse the backup, I'm getting: root@pbs:/mnt# mount -o ro /dev/loop0p2 /mnt/tmp/ mount: /mnt/tmp: cannot mount /dev/loop0p2 read-only. dmesg(1) may have more...
  2. C

    Removable datastore with LUKS on a USB hard drive

    Done: https://bugzilla.proxmox.com/show_bug.cgi?id=6473
  3. C

    Removable datastore with LUKS on a USB hard drive

    So, here's what I've come up with so far...... I hooked into udev via /etc/udev/rules.d/local.rules as: KERNEL=="sda", ACTION=="add", ENV{SYSTEMD_WANTS}+="backup_to_usb.service" KERNEL=="sdb", ACTION=="add", ENV{SYSTEMD_WANTS}+="backup_to_usb.service" That fires off the following systemd...
  4. C

    Removable datastore with LUKS on a USB hard drive

    Interestingly, I came across this thread hunting for this type of feature. I currently use a backup system that I've built over 20+ years of use that uses rsync + snapshots + btrfs that also backs up the latest VM contents to an external disk when inserted / hotplugged. This uses LUKS etc as...
  5. C

    Opt-in Linux 6.14 Kernel for Proxmox VE 8 available on test & no-subscription

    Have you configured things to use amd_pstate_epp? I had to add `amd_pstate=active` to the proxmox hosts kernel command line, and I use the amd-epp-tool to get the current configs:
  6. C

    Severe Download Speed Limitation on Newly Provisioned VMs and CTs (Proxmox 8.4.1)

    PVE is my gateway - it has a WAN subnet (a public /29), and the VMs all hang out on vmbrX which isn't bound to any network adapter.
  7. C

    Severe Download Speed Limitation on Newly Provisioned VMs and CTs (Proxmox 8.4.1)

    Oh, I should say that downloading from the VM to that host is ~270-300MB/sec - doesn't matter if its IPv4 or IPv6.
  8. C

    Severe Download Speed Limitation on Newly Provisioned VMs and CTs (Proxmox 8.4.1)

    Hmmmm - not sure - they mention specifically pci id 14e4:1752 - mine shows: $ lspci -nnd ::200 01:00.0 Ethernet controller [0200]: Broadcom Inc. and subsidiaries NetXtreme II BCM57800 1/10 Gigabit Ethernet [14e4:168a] (rev 10) 01:00.1 Ethernet controller [0200]: Broadcom Inc. and subsidiaries...
  9. C

    Severe Download Speed Limitation on Newly Provisioned VMs and CTs (Proxmox 8.4.1)

    Looking at the iDRAC, its this: Server is a Dell PowerEdge R730.
  10. C

    Severe Download Speed Limitation on Newly Provisioned VMs and CTs (Proxmox 8.4.1)

    I've stumbled across this trying to debug a weird network problem. Running the Ookla speedtest cli program on the host itself, I see: $ ./speedtest Speedtest by Ookla Server: Spintel - Sydney (id: 58437) ISP: Spintel Idle Latency: 0.45 ms (jitter: 0.09ms, low...
  11. C

    Opt-in Linux 6.14 Kernel for Proxmox VE 8 available on test & no-subscription

    I use Home Assistant and log power consumption via a Zigbee based power switch. Lets me measure the actual consumption being drawn from the socket and not calculated via other methods.
  12. C

    Opt-in Linux 6.14 Kernel for Proxmox VE 8 available on test & no-subscription

    Do you have details on what this is? As I posted, I saw it on an N100 CPU embedded board - which in my case has no proxmox or ubuntu on it - so would like to investigate. EDIT: Ah - just updating to kernel 6.14.2 did the trick.
  13. C

    Opt-in Linux 6.14 Kernel for Proxmox VE 8 available on test & no-subscription

    I tried to report a bug to the `linux-edac` mailing list, but I'm not sure the post made it through. I've got an UP7000 embedded board, and kernel 6.13.x doesn't show this behaviour, but 6.14.1 does. This is using Fedora 41 as the distro - so this certainly isn't a proxmox issue. EDIT: Link to...
  14. C

    Opt-in Linux 6.14 Kernel for Proxmox VE 8 available on test & no-subscription

    Some good news, updating to kernel 6.14 dropped the power usage in my rack by ~15 watts. Two proxmox systems, a 3700x and 5700g CPU. You can see when I rebooted both of them into the 6.14 kernel.
  15. C

    Tracking Center Rejected Mails

    If you read the information on how to use DNSBL's, they *ALL* state not to use public DNS servers to query their services. That's why you have a problem. For further: https://pmg.proxmox.com/wiki/index.php/DNS_server_on_Proxmox_Mail_Gateway
  16. C

    [RFE] Add BuyPass as an ACME account

    @t.lamprecht Is this expected to work on PMG also? If I attempt to register via pmgconfig, I get the following: # pmgconfig acme account register BuyPass mail@domain.com -directory https://api.buypass.com/acme/directory Attempting to fetch Terms of Service from...
  17. C

    [RFE] Add BuyPass as an ACME account

    Awesome - that would be great. I found that IPv6 only hosts can't get certs from BuyPass - I've opened a ticket with them to see if they can fix that part.... but other than that, it all seems to work ok :)
  18. C

    [RFE] Add BuyPass as an ACME account

    Nice! I wasn't aware of this.... I managed to set it up using: pvenode acme account register BuyPass mail@example.invalid -directory https://api.buypass.com/acme/directory Then it appears in the Web UI. I didn't manage to come across this in the documentation... Is it documented?
  19. C

    [RFE] Add BuyPass as an ACME account

    ping @t.lamprecht / @Stoiko Ivanov - just for visibility....
  20. C

    [RFE] Add BuyPass as an ACME account

    The BuyPass Go SSL scheme uses the ACME protocol - like LetsEncrypt. They offer free certs with a 180 cert lifetime. Link: https://www.buypass.com/products/tls-ssl-certificates/go-ssl The directory URL is: https://api.buypass.com/acme/directory This should pretty much be a drop-in addition...