Being behind corporate firewall, I need to make Weylus works via USB Tethering.
The README says it's possible but doe not provide step-by-step instruction.
How can I have it working via USB Tethering? I don't know where to start.
I'm on Ubuntu 20.10, Linux 5.8
Did it.
Here are the steps for future readers:
adb
on your system (on Ubuntu, runsudo apt-get install adb
)localhost:1701
. Uselocalhost
and not an IP address.Note: The other answer involves using
adb
, but actually there is no need to useadb
at all or any other tools. This is with Android 12.Here are the steps:
ifconfig
to find the ip address for your PC on the USB tether network, it should look something like this (in this case the ip address is192.168.246.113
):1701
, for example192.168.246.113:1701
Pro-tip: if your tablet is connected via
usb0
, you can get Weylus to automatically display the QR code for the correct ip address withweylus --bind-address $(ifconfig usb0 | grep -oP 'inet \K[^ ]+')
.