Recent content by nomizfs

  1. N

    [TUTORIAL] Enabling SR-IOV for Intel NIC (X550-T2) on Proxmox 6

    Thank you for this. I'm too busy now, but just wanted to let you know about a thread on servethehome where i have modified my old clumsy script for the x710. Nothing much different there.. But i plan to update the thread with the problems i've learned if you want to use proxmox resource mapping...
  2. N

    exclude a specific zfs pool from boot

    Hello, i have the same question, i have 2 block devices containing a ZFS pool that i want to export over iscsi and exclude from zfs.import-scan.service. systemctl disable zfs-import@poolname2ignore.service does nothing, infact just typing anything random for poolname just gives: # systemctl...
  3. N

    [TUTORIAL] PCI/GPU Passthrough on Proxmox VE 8 : Installation and configuration

    Thank you for this guide. Small bug, the intel lines are missing 'blacklist' at beginning of line, results in errors when rebuilding initramfs.
  4. N

    [TUTORIAL] Enabling SR-IOV for Intel NIC (X550-T2) on Proxmox 6

    from the source forum thread i linked to: "I obtained the lspci -D -d 8086:154c command by trying various combo's from the output of lspci -vvm -nn -s 0000:01:02.0" #lspci -vvm -nn -s 0000:01:02.0 Device: 01:02.0 Class: Ethernet controller [0200] Vendor: Intel Corporation [8086] Device...
  5. N

    [TUTORIAL] Enabling SR-IOV for Intel NIC (X550-T2) on Proxmox 6

    you can reset by writing 0. I've adapted my solarflare proxmox script for my QNAP intel X710 cards: nano /etc/systemd/system/sriov-vfs.service [Unit] Description=Enable SR-IOV and detach guest VFs from host Requires=network.target After=network.target Before=pve-firewall.service [Service]...
  6. N

    'qm set' equivalent pct command to attach existing zfs filesystem as mountpoint in container? (solved)

    Hello, i use encrypted zvol's for my desktop vm's by manually creating them, and then linking them to the VM's using the qm set command, for example: qm set 102 -scsi0 /dev/zvol/zpool_800G/debian-root,discard=on,ssd=1,cache=directsync,iothread=1 but is there an equivalent command for...
  7. N

    CPU pinning?

    i have no idea, but you could start with numactl -H
  8. N

    [TUTORIAL] Enabling SR-IOV for Intel NIC (X550-T2) on Proxmox 6

    Sorry, only noticed your reply now. In the VM make sure that "all Functions" is unchecked, and PCI-Express is checked, and the host is q35 machinetype. (just from memory) On my solarflare cards, the NIC processor acts as a hardware L2 switch, and i can communicate between the vf's fine...
  9. N

    [SOLVED] How can i disable /var/tmp from being used when uploading .ISO files?

    Thank you @Neobin , i'll mark this as solved, since this issue is getting attention from developers, and it's likely it will be improved in the future.
  10. N

    [SOLVED] How can i disable /var/tmp from being used when uploading .ISO files?

    Hello, My PVE rpool is on a small 128GB M.2 2242 SSD, and i use a enterprise U.2 SSD for everything not related to rpool. I have disabled local and local-zfs in Datacenter storage. Then i have created the corresponding storage on the datacenter SSD. However, when i upload a .ISO file, it first...
  11. N

    Proxmox VE 8.0 released!

    ok, seems i have manually installed sfc-dkms_4.15.14.1001-1_all.deb previously, which is solarflare driver from their homepage. apt remove --purge sfc-dkms seems to have resolved the issue i think.. EDIT: issue solved, it was manually install solarflare kernel module dkms, i had forgot about...
  12. N

    Proxmox VE 8.0 released!

    Yes, the cryptsetup complaints are normal. here's my complete term.log
  13. N

    Proxmox VE 8.0 released!

    Hello, just tried to update to 8, following the guide. after full upgrade on 7 i first ran ran apt --purge autoremove pve7to8 --full pveversion output was pve-manager/7.4-16/0f39f621 (running kernel: 6.2.16-11-bpo11-pve) and pve7to8 --full resulted in all green. at the end of the upgrade...
  14. N

    [TUTORIAL] Enabling SR-IOV for Intel NIC (X550-T2) on Proxmox 6

    Again, might be solarflare specific. I had to learn everything from the Solarflare PDF. So check the Intel user guide for your card as well.
  15. N

    [TUTORIAL] Enabling SR-IOV for Intel NIC (X550-T2) on Proxmox 6

    My script ofcourse is for Solarflare cards, and with those, i first have to use the solarflare sfboot utility to set my card in sr-iov / full virtualisation mode, and alse define max number of VF's per port. So i'm not familiar with the X550-T2, but first thing you should check is if there is...