Search results

  1. M

    Power cut has destroyed my setup

    Totally different context, but I end up removing the partitions in a zfs raidz1 set up and managed to recover. Don't fully recall whole story but you can have a look at how I did it if somehow helps...
  2. M

    [SOLVED] Force delete of "Pending removals"

    Oh I missed it somehow! I found the option now. Thank you for letting me know.
  3. M

    [SOLVED] Force delete of "Pending removals"

    @fabian putting maintenance mode would be enough, right? And do you know if there is any update on safety built-in feature for this in pbs? Thank you!
  4. M

    [SOLVED] Force delete of "Pending removals"

    It happened same to me, even no other tasks where writing to .chunks. I found that the problem (in my case at least) touch command from the script was doing nothing because of some scrapping reason. Changing this: touch -a -c -d "$yesterday" "$dir/*" by touch -a -c -d "$yesterday" $dir/* made...
  5. M

    Strange Garbage Collection times

    For sure, the amount of data to handle is key on increasing time but also I was really fighting on how to reduce the GC timings from 2-4 hours (don't fully recall) to just few minutes only by, in my case, changing pure ZFS dataset handling with SMB share to PBS, to ZVOL with iscsi share to...
  6. M

    Strange Garbage Collection times

    I ended up using nested ZFS (Zvol truenas -> iscsi share --> PBS ext4) with 3x4TB RAIDZ1 spinning disks and now GC takes around 6-8 min to complete for around 2TB data written. EXT4 handles I/O much faster and layer of Zvol with snapshots adds an extra layer of security in case of any error. I...
  7. M

    Smartctl KO on VM with HDD passthrough

    Did you passthrough the builtin SATA pcie from the motherboard? I have shared IOMMU together with NVME and Ethernet so when try this it just got frezee... :(
  8. M

    Smartctl KO on VM with HDD passthrough

    Did you find out a solution? Thank you,
  9. M

    [SOLVED] iGPU passthrough with amd 7950x

    1--> I just disabled option to "sleep" on proxmox host so I prevent turning off igpu or make some weird behavior. 2--> I am still figuring out how... :(
  10. M

    laptop keyboard+touchpad passthough to a VM

    After googling and finding information as well in this thread, I managed to have my laptop running with Proxmox with passthrough an ATI GPU to Windows 11. There are however some caviats... would like to ask you @aixz, @leesteken and @spanyrd since managed to get it working on your laptops, if...
  11. M

    Snippets hookscript can not change CT net config

    Maybe way of working with LXC is different... I can not support here. If you find any solution, would be great to know so can help others. Regards,
  12. M

    Snippets hookscript can not change CT net config

    I can not confirm if its because of using USB device. My script works with a physical disk attached.
  13. M

    Snippets hookscript can not change CT net config

    I have both hooks, post-start and pre-stop in the same hookscript.sh. - pre-start look for the disk if exist and if so, It attach to the vm I need. - pre-stop detach the disk from the vm. Important to mention that only works using start or shutdown commands using VM. If you reboot within the...
  14. M

    Snippets hookscript can not change CT net config

    What returns echo in your scripts? Mines everything o ln pre-start
  15. M

    Problem with cloud image template ubuntu 20.04

    Why it does not work using scsi???? does not make sense...
  16. M

    Pass-Through disks to TrueNAS if I have Direct Attached Storage (DAS) for Data Backup NAS Expansion

    If the approach is to use disks as storage/backup purposes (not vms) would be terrible to continue with the idea of passing through the disks to TrueNAS or even with it, should be avoided?
  17. M

    [TUTORIAL] Virtual Pendrive on VM

    @gfngfn256 thank you! it worked! and also figure out way bc q35 machines have slightly difference (always enabling USB3.0 performance). Let me summarize: SeaBIOS machines (I can do it over VM>Monitor, requires VM running) drive_add 0...
  18. M

    [TUTORIAL] Virtual Pendrive on VM

    Everything works well but step 4. I get the following error: # device_add usb-storage,bus=xhci.0,id=drive-usb0,drive=drive-usb0,removable=on Error: Property 'usb-storage.drive' can't find value 'drive-usb0' However, if I run this similar command without "bus=xhci.0" it works device_add...
  19. M

    [TUTORIAL] Virtual Pendrive on VM

    Thanks @gfngfn256 for suggestion but struggling to get correct parameters / commands. VM don't start bc unable to find out this bus=xhci.0 :( I mitigated it adding usb0 as SPICE (don't know why) but only to 100Mb... it is really paintful process if can not get USB2.0 or even better USB3.1 to...