UdoB's latest activity

  • UdoB
    UdoB reacted to gusto's post in the thread client connection: 127.0.0.1:60994 with Like Like.
    It seems that the problem has been solved. It is unbelievable, but the problem was the UTP cable between the Proxmox server and the router. The original 1.5m patch cable was used between the server and the router. I crimped the RJ45 connectors on...
  • UdoB
    UdoB reacted to Onslow's post in the thread Scheduling of backups and replication with Like Like.
    01/2:00 Let's verify it: # systemd-analyze calendar --iterations=12 '01/2:00' Original form: 01/2:00 Normalized form: *-*-* 01/2:00:00 Next elapse: Sat 2025-09-27 13:00:00 CEST (in UTC): Sat 2025-09-27 11:00:00 UTC From now...
  • UdoB
    Well especially in a "I don't want to take the whole house offline scenario" for a house I think a two-node cluster with ZFS Storage replication is the better approach: If you have a low-power device (like a raspberry pi or a nas) which can act...
  • UdoB
    UdoB reacted to MarkusKo's post in the thread Poor GC/Verify performance on PBS with Like Like.
    Thats expected, the more backups you add the slower GC & verify will get due to how PBS handles deduplication (many small chunk files) and hdd's can't handle that well. Solutions would be, switch to all flash storage for your backups or if...
  • UdoB
    Solved: I did not create my hard disks on the zfs pool, instead it was running on local-lvm... That is why everything was so slow.
  • UdoB
    UdoB reacted to Johannes S's post in the thread OS Inmutable as core of Proxmox. with Like Like.
    It would also make host backups a lot easier because then you would just have to backup the modifiable files (configuration etc). So I see the benefits, but I also see a huge issue: A big benefit of ProxmoxVE is it's flexiblity since it's...
  • UdoB
    The 152 G is the virtual disk size, given to the virtual guest. The 58 GB is the space of one (or more, you didn't show us the output of df) filesystem(s). Often both are coupled and give similar size - but that is not a must. Examine the...
  • UdoB
    UdoB reacted to Johannes S's post in the thread Scheduling of backups and replication with Like Like.
    You can specify your own choice of a schedule directly in the Dialoge. There is also a Simulator for testing the configuration
  • UdoB
    My way to backup host - I've added this line to cron: 0 2 * * tue,sat tar --exclude='var/lib/vz' --exclude='var/lib/snapd' --exclude='var/lib/apt' --exclude='var/lib/dpkg' -czvf /mnt/data/Backup/proxmox/dump/host.tar.gz /etc /var/lib /home /root...
  • UdoB
    Extension for Multi-Backup-SW solution on a HA PBS Many admins learn to like the PBS solution from Proxmox although some practical features still are missing in contrast to Veeam like single file restore to the source filesystem location...
  • UdoB
    After a lot of head scratching, I figured out how to get two NICs working on mini-PC. One is a 2.5GbE port, which needs driver update to run at 2.5GbE, and the other is a 1GbE port. The two NICs are on two different VLANs as well. Here's the...
  • UdoB
    UdoB reacted to czechsys's post in the thread Ceph Cluster Broken with Like Like.
    Fix your time synchronization as the first step. clock skew detected on mon.proxmox03, mon.proxmox01
  • UdoB
    Servus, es ist die letzen Tage von einem User noch sein "traum" Proxmox VE Server zusammen gestellt worden. Ich teile deshalb hier seine Auswahl, die Teilweise aus meinem erstern Vorschlag und Anpassungen an seine Bedürfnisse besteht. Viel Spaß...
  • UdoB
    UdoB reacted to martinkubat's post in the thread Swap space usage with ZFS with Like Like.
    In my humble opinion, what you’re seeing is just normal Linux behavior: it may swap idle pages even with free RAM to keep ARC/cache. Personally I’d suggest trying zram (with zram-tools or systemd-zram-generator) instead of disabling swap — it...
  • UdoB
    UdoB reacted to Johannes S's post in the thread Swap space usage with ZFS with Like Like.
    For reference: https://linuxatemyram.com https://chrisdown.name/2018/01/02/in-defence-of-swap.html I second the recommendation for zramswap
  • UdoB
    UdoB reacted to bbgeek17's post in the thread Best practic cluster proxmox with Like Like.
    Also, note that 192.90 is not a private IP space https://datatracker.ietf.org/doc/html/rfc1918#:~:text=3. Private Address Space Blockbridge: Ultra low latency all-NVME shared storage for Proxmox - https://www.blockbridge.com/proxmox
  • UdoB
    You should have installed version 9, not 8.x then! Try to find hints regarding the crashes in the Journal. If it happened during the previous boot you can look at the end of the relevant journal like this: journalctl -b -1 -p warning -e For...
  • UdoB
    Ok I was able to figure out the issue. The thunderbolt interface.d configuration was the culprit. The old config did not seem to want to work with 9. Checking the page I got the instructions from...
  • UdoB
    UdoB reacted to waltar's post in the thread zfs send over 10Gbe horribly slow with Like Like.
    of=/dev/zero ?? better be /dev/null otherwise get the sunglasses :cool: Interesting random as fast as urandom ... what I saw too on newer cpus you can do same as fast as having cores which was previously only one max and with more processes only...
  • UdoB
    UdoB replied to the thread zfs send over 10Gbe horribly slow.
    Yes. Maybe. No. On the same machine as above: ~# dd if=/dev/random of=/dev/null bs=1M count=5000 5000+0 records in 5000+0 records out 5242880000 bytes (5.2 GB, 4.9 GiB) copied, 8.26672 s, 634 MB/s ~# dd if=/dev/urandom of=/dev/null bs=1M...