You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for building such a wonderful project. I recently ran into an issue moving my system from mac to linux and wanted to post a description in case it helped anyone else.
Issue: Treal is shown as disconnected even when plugged in Solution:
lsusb should show: Bus 001 Device 010: ID 0dc6:0001 Precision Squared Technology Corp. PSK-7100 USB KBD
This means your Treal is connected.
usbhid-dump -m 0dc6:0001 -es should not allow you to run due to insufficient permissions, but sudo usbhid-dump -m 0dc6:0001 -es should show output on key press. This indicates a permissions problem.
Create a file 10-treal.rules in /etc/udev/rules.d/ with the following lines:
This discussion was converted from issue #1446 on December 06, 2021 00:06.
Heading
Bold
Italic
Quote
Code
Link
Numbered list
Unordered list
Task list
Attach files
Mention
Reference
Menu
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Thank you for building such a wonderful project. I recently ran into an issue moving my system from mac to linux and wanted to post a description in case it helped anyone else.
Issue: Treal is shown as disconnected even when plugged in
Solution:
lsusb
should show:Bus 001 Device 010: ID 0dc6:0001 Precision Squared Technology Corp. PSK-7100 USB KBD
This means your Treal is connected.
usbhid-dump -m 0dc6:0001 -es
should not allow you to run due to insufficient permissions, butsudo usbhid-dump -m 0dc6:0001 -es
should show output on key press. This indicates a permissions problem.Create a file
10-treal.rules
in/etc/udev/rules.d/
with the following lines:Run
sudo udevadm control --reload-rules && sudo udevadm trigger
to reload your rules tableusbhid-dump -m 0dc6:0001 -es
should now runRelaunch plover. Plover should now connect to your Treal.
Beta Was this translation helpful? Give feedback.
All reactions