My solution for automatically updating the device path of a passed through RTL SDR USB device.
The application running in the container is in my case rtl_433 which can not read a symlink for the USB device.
It needs to be recognised by libusb and I could not get it to work in any other way than passing thrugh the full device path, e.g
Add a device in the Proxmox GUI to the full device path. (Maybe not necessary?)
#Create a UDEV rule at:
#Create bash script at:
#Make script executable:
#Add a line to /etc/pve/lxc/<CT_ID>.conf
This line updates the udev rules before container startup.
I could not get it to work by just inserting
or even the pct command into a bash script. Only the method of letting the udev rule run the script that updates the device path for the container worked.
To get the container to recognise the device at host bootup, I had to set the line that updates udev rules in the lxc config file.
Any comments or improvements?
I can remove and reattach the device, even let it be inserted at host bootup, and the container starts fine.
But if I remove and reinsert the device the container must be restarted.
The application running in the container is in my case rtl_433 which can not read a symlink for the USB device.
It needs to be recognised by libusb and I could not get it to work in any other way than passing thrugh the full device path, e.g
Code:
/dev/bus/usb/001/001
Add a device in the Proxmox GUI to the full device path. (Maybe not necessary?)
#Create a UDEV rule at:
Code:
/etc/udev/rules.d/20.rtlsdr.rules
Code:
SUBSYSTEM=="usb", ATTRS{idVendor}=="0bda", ATTRS{idProduct}=="2838", MODE="0666", SYMLINK+="rtl_sdr", RUN="/usr/share/lxc/lxc-<CT_ID>-read-link.sh"
#Create bash script at:
Code:
/usr/share/lxc/lxc-<CT_ID>-read-link.sh
Code:
#!/bin/bash
pct set <CT_ID> --dev0 path=$(readlink -f /dev/rtl_sdr)""
exit 0
#Make script executable:
Code:
chmod +x /usr/share/lxc/lxc-<CT_ID>-read-link.sh
#Add a line to /etc/pve/lxc/<CT_ID>.conf
Code:
lxc.hook.pre-start: "udevadm control --reload-rules && udevadm trigger"
I could not get it to work by just inserting
Code:
"bash -c "pct set 503 --dev0 path=$(readlink -f /dev/rtl_sdr)""
To get the container to recognise the device at host bootup, I had to set the line that updates udev rules in the lxc config file.
Any comments or improvements?
I can remove and reattach the device, even let it be inserted at host bootup, and the container starts fine.
But if I remove and reinsert the device the container must be restarted.