Recent content by BobhWasatch

  1. B

    Import Disk VMDK-qcow2 Unsupported image type 'onolithicFlat

    I guess you mean you're amazed that whatever is writing these broken VMDK files isn't fixed. If a field is supposed to be quoted, and isn't, that's not a problem with the parser, it is a problem with the writer. The only complaint you should have with the parser is that it didn't give a good...
  2. B

    Clock Skew Detected Among Monitors (Health_Warn)

    On the master that is serving time to clients you need the "allow" line at least. In addition, IF the master does NOT have NTP available and you want to use the local clock instead, then you also need "local", but the stratum needs to be less than 10. See here for an example...
  3. B

    Clock Skew Detected Among Monitors (Health_Warn)

    Most NTP servers will say their time is invalid or a high stratum unless they are synchronized to an external source like another NTP server or a GPS clock. One common symptom of this is that the clients of that server will refuse to synchronize. You can check the status of the clock with...
  4. B

    Problem with time within vms

    No worries, I don't need anybody to defend me. Plus, I didn't read the thread very carefully or I would have seen that the OP was using NTP but noted that his issue was the gap between VM startup and when NTP noticed the wrong time. The hook script workaround, like the guest agent method...
  5. B

    Problem with time within vms

    Sorry if I accidentally stepped on your bad mood. Was just trying to solve the immediate problem.
  6. B

    Problem with time within vms

    You have to configure NTP to correct the time when the delta is large, else it won't correct this problem. How you do that varies by NTP server. For chrony you need something like "makestep 0.1 -1" in the config file. Apparently you don't all know about that.
  7. B

    Problem with time within vms

    You could use NTP inside the VM.
  8. B

    About 100% error reporting due to pveproxy.service hooks

    I believe that is supposed to update the available packages. PVE also does that on a periodic basis. What happens if you do "apt update" from the command line? What error do you get?
  9. B

    The PVENode task list in PVE9 is partially obscured due to the terminal font being too large.

    Just to be clear...the way terminals work is they use fixed-size character cells. So many lines by so many columns. This information is communicated to the remote end so it knows how much room there is on the display. The remote end has limited control over the font and size of the terminal. It...
  10. B

    The PVENode task list in PVE9 is partially obscured due to the terminal font being too large.

    It is not a bug. They changed the default output format between v8 and V9 to make it easier to understand the starttime and endtime fields. But that made it not fit on your particular terminal with your particular setup. Nobody cares but you. Life is hard.
  11. B

    The PVENode task list in PVE9 is partially obscured due to the terminal font being too large.

    Please look at the Starttime and Endtime columns. See that one shows Unix time format while the other shows fully broken-out time. The latter takes up more screen width because there are more characters. It isn't a font problem, it is a display format change. Maybe you can use a format option...
  12. B

    The PVENode task list in PVE9 is partially obscured due to the terminal font being too large.

    The fonts look the same to me, but the way times are displayed is different and takes up more characters. Anyway, the font size for ssh would be controlled by your terminal, not by anything on the remote side.
  13. B

    [SOLVED] Created cluster, one node storage gone

    You are missing the command option: pvesm set <storage-name> --disable 0 Edited to put storage-name befre the option.
  14. B

    High boot disk usage on Proxmox 9.2 node (Ext4)

    A really common way this happens is backup up to a remote server using NFS or CIFS. The mount fails for whatever reason and the backups get written to the directory where the remote is supposed to be mounted. That's why everyone is suggesting you unmount those shares before checking space. When...