Search results

  1. D

    Issues with networking and not adding routes

    Hi All am having an issue with the network-scripts attempting to add the default gateway to an interface before it's ready the links are up Any Ideas to the cause?
  2. D

    slow virgl performance

    am running Fedora 36, ubuntu 20.04, Rocky 9 ok will make a clean install on the system and see what it gets natively.
  3. D

    5700G passthrough?

    am currently trying virtgl on this chip. numbers are not good at the moment
  4. D

    slow virgl performance

    hi all I am trying to use virgl connected via a spice client how ever while the VM says it's using virgl the performance is worse than software rendering. has anybody used it on a ryzen 5700g and got more than 6 fps ?
  5. D

    [SOLVED] getting VMID from the command line

    hi all do we have a tool that can get the next available vmid from the system that's unique across the cluster ? as am looking at using qm create but can't pass 0 as the VM ID to auto generate the next ID.
  6. D

    PBS backups in Azure storage

    if your using AWS you could use the virtual tape library system with PBS https://aws.amazon.com/blogs/aws/create-a-virtual-tape-library-using-the-aws-storage-gateway/
  7. D

    Subscription cost disappointment

    no just a email support and the lack of nag screen. wouldn't need an SLA on a home lab. or if you have a licence key being able to have discounted home lab support.
  8. D

    10 Gigabit Network Iperf3 Speed slow down. Why?

    you can find the setting in /proc/sys/net sub folders core and ipv4 can you send the output of ethtool -k <iface>
  9. D

    10 Gigabit Network Iperf3 Speed slow down. Why?

    have you tweaked the networking stack ? whats the setting on ethtool ? what the values of settings of net core and net ipv4 from proc?
  10. D

    issue with CD's

    found it, it's acutally an issue with iso and secure boot. but the message is confusing. should really say secure boot failed.
  11. D

    issue with CD's

    hi guys I have an new issue that's started in which the CDrom device is getting access denied. any ideas as to why ? but it's not a permission issue on the files as all working and non working isos have the same permissions
  12. D

    SMBIOS Adjustment for motherboard information

    To add both SLP and SLIC to Proxmox, I added them both together: Code: args: -acpitable sig=SLIC,file=/PATH_TO_SLIC/SLIC.BIN -smbios type=0,vendor=<SLP>,version=<SLP>,date=<SLP>,release=1.0
  13. D

    SMBIOS Adjustment for motherboard information

    And I used this for SLIC 2.x in Proxmox: Code: args: -acpitable sig=SLIC,file=/PATH_TO_SLIC/SLIC.BIN
  14. D

    SMBIOS Adjustment for motherboard information

    I was working with a Proxmox server earlier this week so I had a little play with the .CONF files. I used this to add SLP in Proxmox: Code: args: -smbios type=0,vendor=<SLP>,version=<SLP>,date=<SLP>,release=1.0
  15. D

    Ceph with multipath

    do your machines boot ok after mapping up the multipath OSDs as my test machine hangs on until I remove the was links then I plug them in and it works. but its boots until I activate the multipath as a OSD.
  16. D

    Ceph with multipath

    this is what am also trying to do but with 2 SAS Shelfs Direct SAS attached disk shelf to HBA port 1 & 2 Direct SAS attached disk shelf to HBA port 3 & 4 then wanting to use the via the multipath to OSD with the SAS connections giving me 24Gbit access to each shelf.
  17. D

    Ceph with multipath

    multipath code block in this doesn't work. I tried fixing it up but still doesn't work for f in $(multipath -l | grep dm- | awk '{ print $1 }') do pvcreate --metadatasize 250k -y -ff /dev/mapper/$f-part1 vgcreate vg$f /dev/mapper/$f-part1 lvcreate -n lv0 -l 100%FREE vg$f...
  18. D

    Fully howto for OpenID connect to Azure AD

    Hi all has anybody got information on how to setup OpenID connect to azure ID as I would like to decouple authentication from VMs on the cluster. as Azure AD is managed by a different team I am looking for more of a how-to to get the basic stuff working between Azure and proxmox. does anybody...