Notes

Some random notes about several topics

This project is maintained by jgbarah

Some stuff about Oculus Quest

I wanted to link to the Quest from my Debian box, so that I can later debug from it. For that, I need:

$ sudo usermod -a -G plugdev user
$ lsusb
...
Bus 001 Device 059: ID 2833:0186 Oculus Quest

That means the device is connected and recognized. It is important that the Quest is on (ensure it didn’t suspend).

$ sudo apt install adb
...
$ adb devices
List of devices attached
XXXXXXXXXXX	device
SUBSYSTEM=="usb", ATTR{idVendor}=="2833", ATTR{idProduct}=="0186", MODE="0660", 
GROUP="plugdev", SYMLINK+="quest%n"

The numbers idVendor and idProduct come from the lsusb listing: the numbers before and after the semicolon, right after ID.

Once i did this, unplug the USB cable and plug it again, adb devices worked like a charm. I also got convenient /dev/quest? links for the Quest, when it is connected.

Details and related documentation: