Search results

  1. M

    Creating new Proxmox server. Help with disk configs.

    Hey guys, I'm going to be moving my bare metal server to Proxmox, and then joining it to another Proxmox server (for a total of 2, no HA requirements). I have purchased several Crucial BX500 (360TB TBW) consumer grade SSDs, with the view to replace them later with enterprise grade if needs be...
  2. M

    Unable to resize disk - Ubuntu VM - Initramfs issue

    An answer? No. A solution? Yes. The only packages you should install are: export DEBIAN_FRONTEND=noninteractive apt-get install -y \ cloud-guest-utils \ cloud-init \ cloud-utils From there on, it'll work. Having cloud-initramfs-growroot installed breaks it. Here is a script I made which...
  3. M

    qm set --sshkey

    Aye, that's the confusion I'm getting. The GUI allows for single lines to be manually added (especially in ED25519's case where it's rather short), but qm set does not allow adding unless it's directly from a file (with the same content). There seems to be a disconnect in ability. The only...
  4. M

    qm set --sshkey

    Aye, the command I put in (should have put this in, my bad!) was: # qm set 1107 --sshkey "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAREKNSYKMD1gDHTG0T7EsC4YEBem6hzM4J7yzgE2uWK test" can't open 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAREKNSYKMD1gDHTG0T7EsC4YEBem6hzM4J7yzgE2uWK test' - No such file or...
  5. M

    qm set --sshkey

    Hey guys, I think I already know the answer, but you never know. In Proxmox GUI, in cloud-init settings, I'm able to set the ssh key (ed25519) as a string. This can also be confirmed in the conf file in /etc/pve/qemu-server/ When I attempt to do the same in the CLI, I get: No such file...
  6. M

    Request for enhancement: Proxmox VIP via keepalived

    If at some point you do decide to share them, even if they're simple, let me know! I've got a few generalised ones in a public repo for my use (https://github.com/modem7/public_scripts/tree/master/Bash%2FProxmox%20Scripts) in case they're useful!
  7. M

    Request for enhancement: Proxmox VIP via keepalived

    Would you perchance be able to share some of those scripts if they're on a repo? They seem immensely useful!
  8. M

    [TUTORIAL] Virtual Pendrive on VM

    Heya, Can this method write to the "disk" as well? I'm trying to do a similar thing here: https://forum.proxmox.com/threads/attach-a-raw-image-as-a-usb-disk-to-the-vm.116417/
  9. M

    Attach a raw image as a USB disk to the VM

    Hey guys, I'm trying to get UNRAID working in a VM, specifically trying to figure out how to virtualise the USB stick aspect. I've looked at similar issues (https://forum.proxmox.com/threads/setup-usb-disk-image-for-tailsguest.38824/ and...
  10. M

    backing up VM template does not work

    Heya, Unfortunately no solution as of yet. My workaround is to keep a non-template version of the VM's for backup (and editing) purposes, and excluding the templates from the backups. So I use this script to create my templates...
  11. M

    backing up VM template does not work

    Hey guys, When I try to backup VM templates, they're currently not working. Logs: INFO: starting new backup job: vzdump 6000 --mode snapshot --storage backup --node proxmox --notes-template '{{guestname}}' --remove 0 --compress zstd INFO: Starting Backup of VM 6000 (qemu) INFO: Backup...
  12. M

    [SOLVED] Weird message when starting Linux VM's

    Perfect, thank you very much! Will mark as solved for now.
  13. M

    [SOLVED] Weird message when starting Linux VM's

    Hey guys, I'm using Proxmox w/ cloud-init enabled VM's, and when I start the VM's up from Proxmox, I'm getting the following messages: root@proxmox:~# /usr/sbin/qm start 1107 Use of uninitialized value in addition (+) at /usr/share/perl5/PVE/QemuServer/Cloudinit.pm line 496. Use of...
  14. M

    Unable to resize disk - Ubuntu VM - Initramfs issue

    It seems removing the package cloud-initramfs-growroot allows things to work. If anyone has an answer as to why it would break things, that'd certainly be a good learning experience! Thanks!
  15. M

    Unable to resize disk - Ubuntu VM - Initramfs issue

    Hi guys, I'm having a problem where I'm not able to resize a disk on an Ubuntu VM using Proxmox. I've run apt install -y cloud-init cloud-initramfs-growroot qemu-guest-agent on the template to make sure the tools are there to do the task, but get stuck on initramfs with what seems like a...