Recent content by dlasher

  1. D

    Console video resolution - what's the "Right" way?

    Just brought up a new node on 8.2, here's what's in my /etc/default/grub: ..snipped.. GRUB_CMDLINE_LINUX_DEFAULT="intel_iommu=on iommu=pt video=1024x768@60" GRUB_GFXPAYLOAD_LINUX=keep GRUB_TERMINAL=console GRUB_GFXMODE=1024x768 GRUB_INIT_TUNE="480 440 1" ..snipped.. </SNIP> Works perfectly...
  2. D

    Docker to PVE-LXC conversion steps/tool?

    Amazing, thank you, I'll give it a shot.
  3. D

    Docker to PVE-LXC conversion steps/tool?

    Beautiful representation of his contributions. Would make a good framed picture for his wall. Not sure, I didn't use his script for Frigate. I just stood up a new LXC container, jumped through the hoops to pass iGPU / Coral through, then stood up docker inside and ran Frigate. Important...
  4. D

    Docker to PVE-LXC conversion steps/tool?

    As a side note, because it needs attention, ttech, who created the fantastic helper scripts I've used repeatedly, and reference above, passed away Nov 2024. https://github.com/community-scripts/ProxmoxVE/discussions/237 If you liked his scripts, used them, consider buying a coffee, dropping a...
  5. D

    Docker to PVE-LXC conversion steps/tool?

    10 months after my initial post, I have everything moved to LXC containers, and I'm 99% happy.. EXCEPT... Frigate is still running in docker in an LXC container, and while it's "thinner" than a KVM instance + Docker, I'd still love to be able to drop it back to native LXC, lose docker, at some...
  6. D

    [SOLVED] Intel NIC e1000e hardware unit hang

    Same hardware as @the_Uli (NUC10i7FN) Linux pve16 6.5.13-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.5.13-6 (2024-07-26T12:34Z) x86_64 GNU/Linux Still happening, still only seeing it happen on hosts with active KVM instances. root@pve16:~# journalctl -n 100 -g "Detected Hardware Unit Hang" Oct 03...
  7. D

    [SOLVED] Intel NIC e1000e hardware unit hang

    Starting to see this on a couple of NUC's after upgrading from 6.2 kernel to 6.5 kernel. Already setting TX/RX to 4096. Sep 18 12:22:54 pve15 kernel: e1000e 0000:00:1f.6 eno1: Detected Hardware Unit Hang: TDH <d7f>...
  8. D

    Modifying Shutdown Sequence (Stop LXC's prior to Networking)

    I've had better luck using: pct shutdown %x --forcestop 1 --timeout 60" then doing whatever reboot/shutdown I need to do
  9. D

    Best practise sharing NFS to proxmox cluster?

    This approach has multiple disadvantages, not the least of which is performance reductions, since the bind mounts all share the host NFS mount (in addition to LACP-bundles being single-member utilized). Anyone figure out how to fix the io deadlock issues? EDIT: One potential note -- I was...
  10. D

    Modifying Shutdown Sequence (Stop LXC's prior to Networking)

    Fair question, having the same issue myself. Using containers that use NFS mounts inside them, and they refuse to stop or shutdown, have to kill the "lxc-start" to get them to die. Welcome any suggestions.
  11. D

    Can I move a CEPH disk between nodes?

    Didn't work for me, but it's been a while, and the devs are good about sneaking in silent improvements. :)
  12. D

    NFS server over ipv6

    Has this been updated? NFS mounts allowed via IPv6 yet?
  13. D

    Console video resolution - what's the "Right" way?

    yes, for me the answer turned out to be forcing the video mode, which I commented on in this thread : https://forum.proxmox.com/threads/changing-host-console-resolution.12408/ Short version - add the following to the END of your GRUB_CMDLINE_LINUX_DEFAULT - then "update-grub" then reboot...
  14. D

    Changing host "console" resolution?

    however, THIS works, and doesn't disable GVT/etc - append THIS to the end of your GRUB_CMDLINE_LINUX_DEFAULT video=1024x768@60 (change appropriately for your output device) also check out "dpkg-reconfigure console-setup" to change console font sizes.