Search results

  1. K

    [SOLVED] PCI passthrough onboard sound

    I'm not sure the issue you are having with your Win10 VM is the same original issue reported here. I have just tried in my AMD to passthrough the audio and it works correctly, however, I tried on a Linux VM and it has not been running for days. I'm using proxmox 8 with kernel 6.11 and I am not...
  2. K

    [SOLVED] PCI passthrough onboard sound

    @jazzygff @joysthokkins what are you trying to do? and which version of Proxmox are you using? I have not had this issue since kernel 5.4 and proxmox 6, this issue got fixed in the kernel after that so I remember when I moved to proxmox 7, I did not have to do anything for the sound to work...
  3. K

    [TUTORIAL] Configuring Fusion-Io (SanDisk) ioDrive, ioDrive2, ioScale and ioScale2 cards with Proxmox

    @Vladimir Bulgaru Thanks for your reply. I did check that doc and I do see my card: Fusion-io ioXtreme 80 FS4-002-081-CS 188000101 Fusion-io ioXtreme 80GB Single Adapter 2.0 x4 3 This is the same product number I get when I do fio-status -a and from what I can see, VSL v3 is supported. Any...
  4. K

    [TUTORIAL] Configuring Fusion-Io (SanDisk) ioDrive, ioDrive2, ioScale and ioScale2 cards with Proxmox

    Hello all, I am trying to get a Fusion-io ioXtream 80Gb working with proxmox 7 and I am not getting too far. I have followed the instructions in the 1st page to install the driver and firmware and I get the following: Found 1 ioMemory device in this system Driver version: 3.2.16 build 1731...
  5. K

    [SOLVED] PCI passthrough onboard sound

    Hi, Which command did you run for make? Did you run: make 2>&1 | tee build.log If so, could you check file build.log and look for errors there? They tend to be more explicit about the problem than shell output. Thanks
  6. K

    [SOLVED] PCI passthrough onboard sound

    Awesome, glad you got it all to work. Enjoy
  7. K

    [SOLVED] PCI passthrough onboard sound

    Hi @diversity, I think the copy/paste of the patch file did not work very well as I did not use the proper format. Try copying this patch content instead: --- a/drivers/pci/quirks.c 2020-03-24 18:57:27.026481021 +0100 +++ b/drivers/pci/quirks.c 2020-03-24 18:58:39.754065062 +0100 @@...
  8. K

    [SOLVED] PCI passthrough onboard sound

    Hi @qwerty0033, I think you are missing a package in your system. Can you check you have package sphinx-common installed? if not, please run apt install sphinx-common and try the make command again. It should work after this. Hope this helps. Thanks
  9. K

    [SOLVED] PCI passthrough onboard sound

    Hi @diversity, This is the content of my patch file: --- a/drivers/pci/quirks.c 2020-03-24 18:57:27.026481021 +0100 +++ b/drivers/pci/quirks.c 2020-03-24 18:58:39.754065062 +0100 @@ -5040,6 +5040,13 @@ DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, 0x1502, quirk_no_flr)...
  10. K

    [SOLVED] PCI passthrough onboard sound

    Hi, I see 3 or 4 errors that you are getting: root@pve:/usr/src/pve-kernel/patches/kernel# cp 0008-amd-no-flr.patch /usr/src/pve-kernel/patches/kernel cp: cannot stat '0008-amd-no-flr.patch': No such file or directory This happens because file '0008-amd-no-flr.patch' (your patch file) cannot...
  11. K

    [SOLVED] PCI passthrough onboard sound

    Hi, I had the same issue and I have recently compiled the kernel with the patch and all worked for me, reboot went well and I am able to passthrough the PCI audio. These are the steps I followed to compile the kernel (based on 5.4.34-1) cd /usr/src git clone...