Search results

  1. datschlatscher

    PVE Non-responsive after file upload

    Unfortunately, I don't have a good idea for why your server crashes. Though, such a sudden and fatal crash might indicate hardware failure. You could try to get an idea of what the kernel is doing right before becoming unresponsive via a Kernel Crash Trace log. Some more information about your...
  2. datschlatscher

    disable RAM overprovisioning

    Well, if you don't want to rely on your own math skills you can, of course, write a script to help you with that. Doing this in a universal way to include most use-cases is just not so trivial, though. From what I can tell, this does not seem like a feature a lot of people request right now...
  3. datschlatscher

    disable RAM overprovisioning

    Proxmox does not include such a feature as of yet. This is a little complicated due to features like memory ballooning. When Proxmox starts a VM, it does not have a sure way of telling how much RAM a VM is going to need. It will simply give the VM more memory as requested, as long as it is...
  4. datschlatscher

    [SOLVED] PBS public IP changed

    You should be able to simply change the IP address of the storage via the parameter server in the storage.cfg. If you do this, you should make a backup of the file though and make sure the change applied correctly. However, the clean solution here would be deleting the storage and afterwards...
  5. datschlatscher

    Enhancement Request

    There have been other users recently suggesting this feature and I did a quick skim in Bugzilla, though I could not find an existing issue for this. So, please feel free to create an issue for this enhancement on our Bugtracker: https://bugzilla.proxmox.com/ This makes it easier for us to track...
  6. datschlatscher

    Backup fehlgeschlagen - BTRFS defekt

    Wohin wird das Backup genau gemacht? Auf einen lokalen Storage auf der gleichen Disk? Input/Output error weißt normalerweise auf ein Problem mit dem Filesystem bzw. der darunterliegenden Hardware hin. smartctl oder ähnliche Diagnosetools auf der entsprechenden Platte sollten hier weitere...
  7. datschlatscher

    Proxmox VE API: 596 Broken Pipe

    It seems other users experienced these problems because of mismatched or broken packages. Could you please make sure that all are up-to-date and try running apt update and apt dist-upgrade again? Please also post the full output of pveversion -v.
  8. datschlatscher

    I may have seriously f...ed up my system

    Are there any messages printed in journalctl when you issue these commands?
  9. datschlatscher

    How to refresh the installation interface?

    To see newly added drives while the installer is already running you would simply need to exit and run the proxinstall script again. However, giving some more information would be helpful here. What driver are you exactly installing and what is your hard disk layout? How are you intending to...
  10. datschlatscher

    VM shows 0.0% disk usage

    At the moment, disk usage for VMs is not tracked and therefore this value is always displayed as 0%. There is still an active issue on this problem. Please see this issue on our bug tracker for more information or if you want to contribute.
  11. datschlatscher

    Cannot reach GUI and Shrink Volume

    Shrinking an LVM-thin (pve-data) is not possible. You would have to migrate all your disks somewhere else. Delete pve-data, extend your root partition (and filesystem) and the recreate the LVM-thin again with reduced size. This would be rather tedious and could leave your system damaged. If you...
  12. datschlatscher

    Cannot reach GUI and Shrink Volume

    Yes, this is a known phenomenon when the pmxcfs (Cluster filesystem - effect also applies on standalone nodes though) is not writable. When you try to log in, the PVE tries to acquire a lock, but it can't because it can't write the file. Your best bet would be to log in to your node via SSH (or...
  13. datschlatscher

    PVE event log generation for changing the VM properties

    The task log only shows an entry for every interaction that generates a UPID, i.e. generally that is whenever the time to completion is unknown or when something is done in the background. This interaction does not happen when you modify the config of a VM, that's why it does not show up in the...
  14. datschlatscher

    Kernel Crash Trace Log

    As far as I understand, you forgot to pipe the file somewhere in the nc command, e.g. screen nc -l -p 5555 -u > /var/log/netconsole/152.128.0.4.log nc does not do this automatically. However, if you attach to the screen session you should be able to read the output that is received by Server 2...
  15. datschlatscher

    [SOLVED] Ryzen 3600 stuck at 3.6GHz (Base CLK) - CPUFreq can't be adjusted!

    Please the mark the thread as Solved, this makes it more likely for others having similar problems to find this solution, thank you!
  16. datschlatscher

    Reserve Copy / Sync Job Speicherplatz oder Kopien begrenzen

    Wenn ich die Verwendung hier richtig verstehe, ist "Versionsverlauf" für Backups im PBS nicht ganz zutreffend, da jedes Backup an sich ein eigenes, unabhängiges darstellt. Beim Sync-Job lassen sich sogenannte Group-Filter konfigurieren, mit diesen kann nach Typ, VM-Gruppe und einer Regex...
  17. datschlatscher

    Reserve Copy / Sync Job Speicherplatz oder Kopien begrenzen

    Bitte erläutere etwas. Wie soll die Kopie / Sync erfolgen, schlicht mit z.B. rsync? Was ist gemeint mit "Versionen begrenzen"?
  18. datschlatscher

    No space for GC & Prune

    As far as I understand, taking a quick look at the code, the error could also come from the backup-proxy not being able to write the UPID file in the first place, which would also explain the subsequent messages. Could you please check the permissions for your tasks folder or if there is...
  19. datschlatscher

    PVE showing high memory usage but VM is not

    I gave it yet another quick spin while monitoring the memory usage, and here the memory usage drops, both in the virtual machine and also on the host, as reported for the Qemu process in the RES column in htop. One thing which took me off-guard though, was that the calculation for "total" RAM...
  20. datschlatscher

    PVE showing high memory usage but VM is not

    I just tested this a little and the "Minimum Memory" setting does not interfere with the memory reclaiming by the host when it is equal to the assigned RAM. When the host uses more than 80% memory and the VM does not use it, it will still be reclaimed, independent of the minimum. From what I've...