Search results

  1. B

    Partition my SSD

    Again, I advise to read the manual. You have what's called an LVM-thin setup. The installer set up the Logical Volume Manager, which is different from traditional partitions. It manages a chunk of disk space by carving it up into virtual block devices "on demand". When you make a VM a virtual...
  2. B

    Partition my SSD

    That isn't what you want to do. You see that 1.7 TB "pve-data" thingy? That should show up in the gui as "local-lvm" or similar. That is where your VMs will go. Just set that as the storage when you create a VM. Then read the storage section of the manual.
  3. B

    Create partition

    I don't run a cluster but AFAIK the storages don't have to be the same size on all nodes for migration to work. You just need to have sufficient space on the target.
  4. B

    Create partition

    Why did you bring it up then? As far as I know the GUI only supports creating an LVM-thin on a whole disk. It isn't exactly an enterprise use-case to have other things on the same disk as your VM's, while it is one to have entire disks dedicated to VM storage. That being said, it can be done...
  5. B

    Create partition

    So do that and use Hyper-V as the hypervisor.
  6. B

    How safe are the Updatable PVE Helper-Scripts

    In that case you might be better served by a desktop virtualization solution: virt-manager, vmware, virtualbox. PVE is pitched as an enterprise solution and that comes with certain expectations of the users. Those other solutions claim to be easy for beginners. You are free to use it whatever...
  7. B

    send email from proxmox from terminal (without installing additional mail client)

    One way is to "apt install bsd-mailx". Then your command becomes echo "whatever" | mail me@email.com... Or something like that.
  8. B

    amdgpu secure display failure

    Googling suggests that this is a feature Google wanted for Chromebooks. https://www.phoronix.com/news/AMDGPU-Secure-Display-Patches
  9. B

    amdgpu secure display failure

    The error I get is below. I run PVE 9 with kernel 6.14.11-3. : amdgpu 0000:c2:00.0: amdgpu: RAS: optional ras ta ucode is not available : amdgpu 0000:c2:00.0: amdgpu: RAP: optional rap ta ucode is not available : amdgpu 0000:c2:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not...
  10. B

    amdgpu secure display failure

    I think pve-firmware package has the amdgpu firmware. Apparently you already have that? Maybe someone will know more if you tell us what GPU you have. I get an error about not having secure display microcode, but everything seems to work (and it is a different error from yours). My machine is a...
  11. B

    AMD Ryzen AI Max+ 395 / Radeon 8060S Support

    I got my FW desktop. PVE 9.0 runs fine on it. No issues so far. The GPU works with virtio-gl, which gives decent desktop performance for my usage. It replaces a Xeon D-1541 that was getting old. Relative to that it is very fast and has twice the core count with similar idle power. Passing the...
  12. B

    Clock and Uptime Discrepancy Between Proxmox VE Host and Virtual Machine

    Also, the reason I asked how @powersupport how he was checking the time in the VM is because on Linux each user can have their own locale settings. The timedatectl settings only apply to root and as a default for other users. So it is entirely possible for different users to have different...
  13. B

    Clock and Uptime Discrepancy Between Proxmox VE Host and Virtual Machine

    How are you reading "VM local time"? Do you log in to a shell, do you send a command to the agent, something else? About 99% of the time when there is a time discrepancy of an exact number of hours or half-hours and NTP is synchronized, it is a time zone problem. The uptime can obviously be...
  14. B

    Automatic installation uses erratically different network device to fetch answer.toml via http

    By having them on the same subnet you are telling the kernel routing that it doesn't matter which one it uses because they are all the same. If they aren't actually the same, then you will see what you are seeing. Kernel picks one arbitrarily, because you told it that it doesn't matter.
  15. B

    Automatic installation uses erratically different network device to fetch answer.toml via http

    If the interfaces are in different subnets, then the IP of the http server will tell the kernel which one to use. That's how routing works.
  16. B

    [SOLVED] node left the cluster after upgrading it to debian-13

    The official method for upgrading is here: https://pve.proxmox.com/wiki/Upgrade_from_8_to_9 Perhaps reviewing it will reveal a step that was overlooked. Did you see any error messages during the upgrade process?
  17. B

    Automatic installation uses erratically different network device to fetch answer.toml via http

    DHCPOFFER of 192.168.48.100 from 192.168.48.1 DHCPREQUEST for 192.168.48.100 on eth1 to 255.255.255.255 port 67 DHCPOFFER of 192.168.48.200 from 192.168.48.1 DHCPREQUEST for 192.168.48.200 on eth0 to 255.255.255.255 port 67 DHCPACK of 192.168.48.100 from 192.168.48.1 These two ports are getting...
  18. B

    Automatic installation uses erratically different network device to fetch answer.toml via http

    Again, from your log it appears that there are multiple interfaces on the same subnet. If they are not actually all connected somehow, this can't work as you want it to (and is a bad idea to begin with). You can still do what you want by only connecting one interface during installation. IOW, I...
  19. B

    [SOLVED] node left the cluster after upgrading it to debian-13

    To be clear, did you upgrade the Proxmox packages to PVE 9 or did you only upgrade the Debian packages? If the latter, you need to do the former as well.
  20. B

    Automatic installation uses erratically different network device to fetch answer.toml via http

    Having a bunch of different interfaces on the same subnet with incomplete reachability between them is...sub-optimal. As you've noticed, since they are all on the same subnet the Linux kernel assumes they are equivalent and will just pick one to use for any given transaction. Maybe disconnect...