The linked brief instructions read. (credit. J. Adamson, 2025)
# Open elevated Powershell
wsl.exe --install
# Installed WSL and the default distro, Ubuntu 24.04
# Prompted to reboot, done
# Open elevated Powershell
wsl.exe -l -v
Windows Subsystem for Linux has no installed distributions. <== Weird and incorrect!
wsl.exe --install Ubuntu
Ubuntu is already installed.
Launching Ubuntu...
# Set up username/password
sudo su -
apt update
# Possibly one or two non-essential packages here
apt install -y usbutils libusb-1.0-0-dev libusb-dev build-essential g++-10
# Note the number of USB devices
lsusb
# Open separate new elevated Powershell window
# Connect Q2 Radio to PC by USB
# The following command will list Bus IDs, take note of the one that pertains to the Q2
usbipd list
usbipd bind --busid {BUSIS}
usbipd attach --wsl --busid={BUSID}
# Check that it's now shared. if you need to detech, use usbipd detach --busid={BUSID}
usbipd list
# Back in original Powershell window:
# You should now se an extra USB device (the Q2) after running lsusb
lsusb
cd ~
cd q2radio/src
make
make install
Update 24-02-2025