RolandK's latest activity

  • RolandK
    do you have backup fleecing enabled @proxman4 ?
  • RolandK
    RolandK replied to the thread Shared Remote ZFS Storage.
    >at least the main Linux enterprise distros do and support it and why is nobody fixing major issues with it then ? https://www.phoronix.com/news/Linux-RAID-Bug-O-DIRECT https://bugzilla.kernel.org/show_bug.cgi?id=99171 even bcachefs won't...
  • RolandK
    good point !
  • RolandK
    In my interpretation of the question "why is PBS using these characters" (paraphrase) it's less that Linux "can" do this, and more about "what is the actual benefit of using these characters vs not using them at all when PBS makes/interacts with...
  • RolandK
    because it's a Linux based piece of software, and Linux doesn't care about such things (paths are sequences of bytes). shell handling does require extra attention, that's why tools like find and xargs have special modes: $ find . -iname...
  • RolandK
    to be honest, why is pbs using special chars like \ , : or ! at all in filenames ? i have rarely seen so weird file naming and it's really making users life hard when it comes to script processing, i'm sure there are quite some people pulling...
  • RolandK
    RolandK replied to the thread swap on proxmox server ?.
    >You don't need "checksums or redundancy" for swap, that makes little sense. huh? >If using ZFS on HBA, then you (like I said) can reserve a bit of disk space at the end and make swap postinstall, >or put swap on separate dedicated disk that...
  • RolandK
    RolandK reacted to Impact's post in the thread swap on proxmox server ? with Like Like.
    As stated above, it's what I use as well. I have no issues.
  • RolandK
    RolandK replied to the thread swap on proxmox server ?.
    what about zram for swap alternative? it is discouraged here https://pve.proxmox.com/wiki/Zram but in zfs community it is currently recommended as alternative to swap on zvol : https://github.com/openzfs/zfs/issues/7734#issuecomment-3723591151
  • RolandK
    RolandK replied to the thread swap on proxmox server ?.
    that's at least better then nothing, but is no real redundancy but more a comfortability switch, as you won't need maintenance on the machine on bootup when one swap device fails.
  • RolandK
    RolandK reacted to Impact's post in the thread swap on proxmox server ? with Like Like.
    I use ZRAM myself: https://pve.proxmox.com/wiki/Zram#Alternative_Setup_using_zram-tools You can also leave some space unallocated on the disk and create a SWAP partition or a SWAP file on a ext4 file system created on it.
  • RolandK
    RolandK replied to the thread swap on proxmox server ?.
    you have no redundancy with simple ext4, if your disk crashes and pages are swapped out, your server crashes. that's why i wrote "rundandant disk". nowadays, typically zfs is being used and using mdraid is discouraged with proxmox so i wonder...
  • RolandK
    since swap on zvol still is not in a usable state - what is the recommended proxmoy way to go to have swap on servers with requirement for redundant disk (i.e. raid storage) ?