Recent content by Veeh

  1. V

    /var/tmp/espmounts/7276-6706/EFI/proxmox/6.5.13-6-pve: No space left on device when installing new kernel

    So this is kind of funny to end back on this post haha ! I'm having the same issue again with 6.11. Anyway, it does not matter. I think the issue is that I need to run auto-remove more often. I am currently not running it, so I guess I have to blame myself for having this issue again! @luison...
  2. V

    /var/tmp/espmounts/7276-6706/EFI/proxmox/6.5.13-6-pve: No space left on device when installing new kernel

    Hello, Got the same error with apt upgrade and also apt autoremove. Like you it was complaining about the Boot partition being full. When you run df -h it does not show the EFI partition. You can get them with fdisk and also by looking in /dev/disk/by-uuid/* In my case I had this # ls -al...
  3. V

    [TUTORIAL] API automation, Power ON/OFF vm and else.

    I don't know what you understood or assumed from my post. But yes to create an API Token in the GUI one has to go in the Datacenter menu first: "Datacenter > Permissions > API Tokens" There are 2 ways to do this. API token or user. - The user requires a username/password, and then you get a...
  4. V

    [TUTORIAL] API automation, Power ON/OFF vm and else.

    Hi, With a token it's much more simple. But keep in mind that your api token secret will be in clear text in your script. And if you want to automate or run unattended, at some point there will be a credential in clear somewhere. Like gfn mentioned, if you want to keep it secure, run it...
  5. V

    [TUTORIAL] API automation, Power ON/OFF vm and else.

    I just tried it on my infra I'm running 8.1.4 as well, and it worked. This script is not based on the api token secret. You need to enter the user password in the apip variable And there will be a first api call to obtain a ticket and cookie, which will then be used to log in and generate the...
  6. V

    [TUTORIAL] API automation, Power ON/OFF vm and else.

    No idea sorry Domenico. I have not set up anything with TFA, so I would not know. maybe someone else could help you out. Or if you use separate permission for the API token, it way me be possible to bypass the TFA. I'm just guessing at that point.
  7. V

    Proxmox VE 7.4 released!

    Hello, I have a question regarding the 7.3 > 7.4 upgrade. I'm running on kernel 6.1. Should I opt-in 6.2 prior to the 7.4 upgrade, or can I upgrade 7.4 first and do the kernel later or remain in 6.1? I don't mind having the kernel 6.2. I just want to upgrade the proper way. Thank you
  8. V

    Proxmox VE 7.4 released!

    Nice ! I'll update tonight. thank you
  9. V

    ZFS Pool space utilization

    I did not know about padding overhead. ZFS is still relatively new to me. I'll look into that. Thank you Dunuin.
  10. V

    ZFS Pool space utilization

    Hi, I creating this thread regarding ZFS Pool space utilization because I would like to make sense of how it is working. I have a ZFS Pool with 5 NVME drive of 1T. The pool is in raidz1 configuration. I did not enabled compression to get the maximum preformances. I enabled thin provisioning in...
  11. V

    Opt-in Linux 6.1 Kernel for Proxmox VE 7.x available

    You need to update your grub. List your avaiulable kernel with proxmox-boot-tool kernel list then update proxmox-boot-tool kernel pin <kernel-version> Also for futher info proxmox-boot-tool help Reboot then remove the the kernel again
  12. V

    Opt-in Linux 6.1 Kernel for Proxmox VE 7.x available

    I run a Threadripper with 2GPU in passthrough and a root ZFS install. I mounted /tmp on ram as indicated and I have no issues. Both passthrough are working fine. Thanks for releasing 6.1 this early!
  13. V

    [TUTORIAL] API automation, Power ON/OFF vm and else.

    I don't know the api that much but, if you check the api viewer https://pve.proxmox.com/pve-docs/api-viewer/ You have to specify the node name. I don't think you could use a wildcard. They might be a way to get the VM list for each node with the API. But it is just a guess Then from the list...
  14. V

    Opt-in Linux 5.19 Kernel for Proxmox VE 7.x available

    Not having anything is indeed the way to go ! I don't need the hook script to rescan the pci bus anymore Thank you for this.
  15. V

    [TUTORIAL] API automation, Power ON/OFF vm and else.

    You were right !! There was a mistake in the bash script. In the cookieid variable. I forgot to replace the user field by $apiu. It was set to api@pve. And off course it worked for me because that's the user I used... I fixed it. Try again