Can anyone confirm if this is actually possible or not? I've seen several posts on this forum trying to do USB passthrough over the years, and it seems no one has been able to do it (passthrough from a USB device to an LXC container using the device's "ID").
This also apply for "CT" (containers), i dont know how to setup the container to use the USB device beside using the device "path" wich the USB Port number and device number... (Something like that)
Thanks!
one year lataer and proble is still there even any change in auto suspend, happend with any USB Wireless network device. https://bugzilla.proxmox.com/show_bug.cgi?id=6880
try this, put a preseed file on a web server with this inside :
### Locale and keyboard (minimal, required)
d-i debian-installer/language string en
d-i debian-installer/country string US
d-i debian-installer/locale string en_US.UTF-8
d-i keyboard-configuration/xkb-keymap select us
### Network...
try this bash script:
#!/bin/bash
# Verifica si se ejecuta como root
if [[ $EUID -ne 0 ]]; then
echo "Este script debe ejecutarse como root"
exit 1
fi
# Pedir la nueva IP y gateway
read -p "Nueva IP (ej: 192.168.1.200/24): " NUEVA_IP
read -p "Nueva Gateway (ej: 192.168.1.1): " NUEVA_GW...