[GH-ISSUE #200] volume_size_info error when setting up vms #113

Closed
opened 2026-02-27 15:46:30 +03:00 by kerem · 1 comment
Owner

Originally created by @SpiderUnderUrBed on GitHub (Feb 17, 2025).
Original GitHub issue: https://github.com/proxmoxer/proxmoxer/issues/200

proxmoxer.core.ResourceException: 500 Internal Server Error: volume_size_info on 'local:iso/fg6h0pjs26025yxhr0zv9rxw2dwyabga-latest-nixos-minimal-x86_64-linux.iso' failed

^ error

[spiderunderurbed@daspidercave:~/nixnuc/nixmoxer]$ du -h latest-nixos-minimal-x86_64-linux.iso
1.2G    latest-nixos-minimal-x86_64-linux.iso

^ size of my ISO

[spiderunderurbed@intelnuc:~]$ df -h /
Filesystem      Size  Used Avail Use% Mounted on
tmpfs           7.8G  1.5G  6.3G  20% /

The reason I show the size of my iso and root space is because I think it could be related. Also, I am configuring this with nixos-proxmox, however the nix module is not the cause of the error as the error is from proxmoxer core. here is the configuration, pretty easy to read, might give some insight:

{ config, lib, pkgs, ... }:

{
  networking.hostName = "myvm";

  virtualisation.proxmox = {
    node = "intelnuc";
    autoInstall = lib.mkForce true;
#    iso = pkgs.runCommand "nixos-minimal.iso" {
#      src = ../latest-nixos-minimal-x86_64-linux.iso;
#    } ''
#      mkdir -p $out
#      mkdir $out/iso
#      cp $src $out/iso/
#    '';

    vmid = 100;
    memory = 12288;
    cores = 3;
    sockets = 1;
    boot.order = [ "disk" ];
    scsi = [
      { file = "/home/spiderunderurbed/hdds/vms/vm-1/result/nixos.qcow2"; size = "20G"; }
    ];
  };

  services.openssh.enable = true;
  time.timeZone = "UTC";

  #  Fix conflicting image.baseName
#  image.baseName = lib.mkForce "nixos-custom";
}
Originally created by @SpiderUnderUrBed on GitHub (Feb 17, 2025). Original GitHub issue: https://github.com/proxmoxer/proxmoxer/issues/200 `proxmoxer.core.ResourceException: 500 Internal Server Error: volume_size_info on 'local:iso/fg6h0pjs26025yxhr0zv9rxw2dwyabga-latest-nixos-minimal-x86_64-linux.iso' failed` ^ error ``` [spiderunderurbed@daspidercave:~/nixnuc/nixmoxer]$ du -h latest-nixos-minimal-x86_64-linux.iso 1.2G latest-nixos-minimal-x86_64-linux.iso ``` ^ size of my ISO ``` [spiderunderurbed@intelnuc:~]$ df -h / Filesystem Size Used Avail Use% Mounted on tmpfs 7.8G 1.5G 6.3G 20% / ``` The reason I show the size of my iso and root space is because I think it could be related. Also, I am configuring this with nixos-proxmox, however the nix module is not the cause of the error as the error is from proxmoxer core. here is the configuration, pretty easy to read, might give some insight: ``` { config, lib, pkgs, ... }: { networking.hostName = "myvm"; virtualisation.proxmox = { node = "intelnuc"; autoInstall = lib.mkForce true; # iso = pkgs.runCommand "nixos-minimal.iso" { # src = ../latest-nixos-minimal-x86_64-linux.iso; # } '' # mkdir -p $out # mkdir $out/iso # cp $src $out/iso/ # ''; vmid = 100; memory = 12288; cores = 3; sockets = 1; boot.order = [ "disk" ]; scsi = [ { file = "/home/spiderunderurbed/hdds/vms/vm-1/result/nixos.qcow2"; size = "20G"; } ]; }; services.openssh.enable = true; time.timeZone = "UTC"; # Fix conflicting image.baseName # image.baseName = lib.mkForce "nixos-custom"; } ```
Author
Owner

@jhollowe commented on GitHub (Feb 18, 2025):

The error volume_size_info on 'local:iso/fg6h0pjs26025yxhr0zv9rxw2dwyabga-latest-nixos-minimal-x86_64-linux.iso' failed came directly from Proxmox Virtual Environment. You should ask about this in the proxmox forums.

Some more info that may be useful for them:

  • what type of storage is local?
  • is ISO storage enabled on local?
  • does this error happen with a shorter filename?
  • does this work when you try to upload the ISO file in the PVE WebUI?
<!-- gh-comment-id:2667174925 --> @jhollowe commented on GitHub (Feb 18, 2025): The error `volume_size_info on 'local:iso/fg6h0pjs26025yxhr0zv9rxw2dwyabga-latest-nixos-minimal-x86_64-linux.iso' failed` came directly from Proxmox Virtual Environment. You should ask about this in the proxmox forums. Some more info that may be useful for them: * what type of storage is `local`? * is ISO storage enabled on `local`? * does this error happen with a shorter filename? * does this work when you try to upload the ISO file in the PVE WebUI?
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/proxmoxer#113
No description provided.