Jump to content

Ryu091

Members
  • Posts

    7
  • Joined

  • Last visited

Report Comments posted by Ryu091

  1. On 8/22/2021 at 7:35 PM, Keksgesicht said:

    The solution is a lot simpler.

    Linux (unRaid) is somehow blocking the device on the host.
    I found out that you can unload the bluetooth drivers and it works now inside the VM.

    modprobe -r btusb
    modprobe -r bluetooth

     

    If you want that it persistent between reboot, you have to blacklist these drivers.

    Normally it is /etc/modprobe.d/ but unRaid does not replace the initial root filesystem (initrd / rootfs) with a block device so changes where are not persistent.
    In some other forum thread a found something like this for unRaid. (not tested because my system is still running)

    mkdir /boot/config/modprobe.d/
    echo -e 'blacklist btusb\nblacklist bluetooth' > /boot/config/modprobe.d/bluetooth.conf

     

    If you still need bluetooth on the host for some docker container.
    It is probably needed to load the drivers again when the VM isn't running.

    modprobe btusb
    modprobe bluetooth

     

    This One Is really working for me Thank you for your Guide :)

×
×
  • Create New...