create

  1. V

    Proxmox API QEMU VM Creation Issue

    class VpsCommand extends Command { protected $signature = 'vps'; protected $description = 'Create a new VPS as a Test'; private $data = [ 'cores' => 2, 'memory' => 4, 'disk' => 10 ]; public function handle(): void { $vpsId = 10001...
  2. V

    Migrating to a New Node Fails

    Hi all, I'm having an issue that happens sometimes where when I create a new VM and migrate it to another node of mine (pve12-test -> pve11-test). VM created with: qm create 1170 --memory 1024 --net0 virtio,bridge=vmbr0 --scsihw virtio-scsi-pci --onboot=1 --ostype l26 && qm set 1170--scsi0...
  3. N

    [SOLVED] Can't create container (after removing cluster node?)

    I have started experimenting with proxmox only a few days ago and created a little data center here at home with two linux nodes that now run my home network in a few VMs and containers. I learned a lot, the experience has been very nice so far and I haven't tried any real shannanigans (yet). I...
  4. I

    What is the Proxmox MAC address block or range?

    Like the subject says really. For $reasons I need to create a new VM from the command line. For the network adapter I need to specify a MAC address. To this end, I'm wondering if Proxmox has registered a MAC(OUI) block or range or prefix which we could use to generate out MAC's from. I mean I...
  5. G

    Create qcow2 images from the CLI without owner VM, possible?

    Greetings, my goal is to: create a qcow2 or raw image from the command line (I would prefer qcow2 anyway) without linking it to a new or existing VM; create a partition table and a file system in it; mount it, to access data (copy, sync, from a remote source) unmount the image when finished I...
  6. A

    Can't create VM on Proxmox 6.1!

    Hello, I can't create VM from a template neither in the cluster with subscription, nor in cluster without it... I get the same error: # qm clone 105 135 Use of uninitialized value $nodename in hash element at /usr/share/perl5/PVE/Cluster.pm line 724. Use of uninitialized value $nodename in...
  7. C

    [SOLVED] Can't create CT on 5.4

    Just upgraded to 5.4 and I can no longuer create a CT. When trying I get the following error: extracting archive '/mnt/pve/nas/template/cache/ubuntu-18.04-lts_18.04-1_amd64.tar.gz' tar: ./var/spool/postfix/dev/random: Cannot mknod: Operation not permitted tar: ./var/spool/postfix/dev/urandom...
  8. E

    Container creation process

    Hello, Container creation process is completed in 5~8 minutes or unsuccessfully. I have never experienced this problem before,how can I solve this problem? Using default stripesize 64.00 KiB. For thin pool auto extension activation/thin_pool_autoextend_threshold should be below 100. Logical...
  9. S

    [SOLVED] Proxmox PHP API - Create lxc container.

    Hello, I have a problem with creation of LXC container via PHP. API is connectig correctly with pve, because i can start / stop existing container, i am able to list nodes, and check what VIM is next. but while creating LXC i receive bool(false) value. My code look's like that: <?php require...