Search results

  1. M

    VERY strange puzzle points to Proxmox bug? Help me diagnose please!

    So perhaps there's an unusual bug related to this... talk about obscure. May need to deep-dive on debug levels of the process.
  2. M

    VERY strange puzzle points to Proxmox bug? Help me diagnose please!

    It started the first Saturday after I added the second NVMe/mirror in early April. (Since it only happens once a week, it took a while to eliminate seemingly more obvious causes. My first thought was hardware issues... ;) ) I didn't know fleecing existed, so no ;) ... AND remember: I can't...
  3. M

    VERY strange puzzle points to Proxmox bug? Help me diagnose please!

    This is one of the strangest issues in my 50+ years of computing. Your help, ideas, diagnostic or solution suggestions most welcome! CONTEXT I have a pair of almost-the-same Proxmox VM hosts. (HP Z2 G5 SFF, well loaded.) Both have NVMe 1TB ZFS mirrored primary storage Host 2 is MUCH less busy...
  4. M

    Generic Solution when install gets FrameBuffer Mode Fails

    I am curious: I've never heard of a pure HDMI video interface card (ie one that says it is "HDMI"). What does lspci | grep -i hdmi show on your system? Every sample I can find shows "VGA compatible" for any video, and "HDMI" shows up on the audio controller (which doesn't matter for this.)...
  5. M

    Generic Solution when install gets FrameBuffer Mode Fails

    That's somewhat bad advice: 1) Yes, hitting ESC ends any data entry command (insert, append, 'open' (above or below this line) etc) ) 2) Fancy commands do NOT begin with ";" (semicolon). They begin with ":" colon! 3) But easier than :wq is ZZ (capital Z, capital Z) which is save and exit. vi --...
  6. M

    Proxmox install - ZFS on NVME, RAID1 does it make sense ?

    And neither does PLP. To quote the OpenZFS page I linked above (emphasis mine): Please re-read the OpenZFS page I linked (and the Kingston further details if interested. Not all vendors are that forthcoming with their methods!) Your explanation dates to much older hardware. For almost a...
  7. M

    Proxmox install - ZFS on NVME, RAID1 does it make sense ?

    Ummm... PLP is greatly limited. It can only handle a few tens of ms of data transfer, which should be enough to stabilize what was already sent to the device. In fact, modern NVRAM SSD's claim to provide equivalent protection, and the OpenZFS team believes it (see link below.) Beyond...
  8. M

    Troubleshooting VLAN Configuration: VMs in VLAN 25 Unable to Obtain IP Address

    1) Is pfSense on your Proxmox server or elsewhere? 2) You're certain the link to the switch is 100% fine? If not, I would temporarily simplify by backing off from LACP/LAG group. Keep it a simple one-connection link until you have this solved. Fewer variables. 3) Here's how I have trunk +...
  9. M

    [SOLVED] Can't migrate running vm with mapped resources

    We're talking PCIe Pass Through here. The VM configuration includes the exact PCIe slot. Here's what the *.conf line it looks like for an nVidia GPU... with the final .* removed so both the GPU and audio devices are passed through (required for the nVidia driver/installer to recognize the card):
  10. M

    [SOLVED] Can't migrate running vm with mapped resources

    How certain are you that the other host is 100% identical? Exact same devices in every PCIe slot? Same firmware versions? (I can kinda guarantee the S/N's are different but that is hopefully never an issue.) You can certainly come close even if PVE won't directly do it: Shut down VM Edit the...
  11. M

    [TUTORIAL] HOWTO: Add a slightly smaller mirror to single ZFS root rpool

    I just finished accomplishing this. It's not too tough once you know how to get past a few nigglies. Many thanks to @Dunuin and to the author linked below. And of course to the awesome ProxMox team. Prerequisites This sequence is based on a few assumptions. If your situation is significantly...
  12. M

    Troubleshooting VLAN Configuration: VMs in VLAN 25 Unable to Obtain IP Address

    WIreshark is your friend. And tcpdump within a VM. And learn how to do live remote (ssh-based) tcpdump to wireshark as needed. But for this situation where you're not getting the DHCP, just doing tcpdump in pfSense and in your VM ought to tell you a lot. You're certain the hash policy is...
  13. M

    Proxmox 8.1.4 and passthrough gpu nvidia

    Also: MUST pass through both the video and audio devices, or the VM's nVidia drivier may not see the pass through. See my post.
  14. M

    Adding 2nd boot drive: is anything needed on partition 1?

    Final notes: Once the above (see "A few hints..." (NON-copying) sgdisk sequence is performed to create the new GPT and three partitions on the new disk) is complete, the job is finished after these commands (change sdx to your drive, or better to disk/by-id/xxxx) proxmox-boot-tool format...
  15. M

    Adding 2nd boot drive: is anything needed on partition 1?

    A few hints maybe should make their way into that part of the wiki at some point. Obviously, overwriting partition tables is Dangerous Ground :) Something perhaps-safer: here's how to set up a drive the ProxMox Way, without doing a copy at all ;) For testing... Save and restore partition tables
  16. M

    Adding 2nd boot drive: is anything needed on partition 1?

    OK, I have rescued my partitions*** and am up and running again. However, there's still this nagging question... I understand. That's honestly how it is supposed to work. And I seriously questioned my sanity. Honestly, it didn't work that way for me. Makes me nervous about sgdisk and/or...
  17. M

    Adding 2nd boot drive: is anything needed on partition 1?

    There is a SERIOUS error in the instructions on the wiki! I'm working my way back to repair the damage... sgdisk <healthy bootable device> -R <new device> SHOULD be sgdisk --replicate=<new device> <healthy bootable device> Supposedly the wiki version works. Did NOT for me. It wiped my...
  18. M

    [SOLVED] Corrupted drive - how to repair?

    I realize this is an old issue, but I just ran across it for the first time. I have extensive ddrescue experience, having helped the author add some improvements. Here are a few suggestions based on more experience than I wish ;) For both rotating and SSD storage, if you have any concern that...
  19. M

    Adding 2nd boot drive: is anything needed on partition 1?

    I see info discussing the Installer layout of ProxMox EFI boot drives, with 3 partitions: I want to add a second mirror drive. There are complex methods, but I'm seeking something simple for myself and others. To that end, a few questions: 1) Is there a script to duplicate what the Installer...
  20. M

    SPICE failure in Win10 VM -- what listens on port 3128???

    I found the presenting issue. Sad. 1) HINT: the code nicely pointed by @fiona above is only one aspect. It uses verify_spice_connect_url() and I can't find the actual source for that. (In this module, there's only a stub.) 2) That was a red herring anyway. The REAL issue is not documented...