Cannot access remarkable 2 via web nor ssh

Hi,

Does anyone had this issue (assuming it has the tablet) that cannot access remarkable 2 via web nor ssh?

I can do so if I’ll boot an OS via USB but from Qubes it just doesn’t work.

Note: Remarkable will assign, automatically, to itself, the IP: 10.11.99.1

LE: On sys-usb I can see it attached
Tried to connect to it from sys-usb as well as attaching to another vm

Thank you,

What’s the output of this command in sys-usb when you attach the tablet to your PC with USB cable?

ip a

And what error do you have when you try to connect to it using ssh in sys-usb?

ssh root@10.11.99.1

I’m seeing this interface ens6f0u5c2 but has no IPs

ssh: connect to host 10.11.99.1 port 22: Network is unreachable

Run this command in sys-usb:

sudo dhclient ens6f0u5c2

Then check the output of ip a again.

grep: /etc/sysconfig/network-scripts/ifcfg-*: No such file or directory

But it worked.
Thanks

The same command will be necessary (possibly with adjusted interface name) if you connect it from sys-usb to another qube. It works then.

I’m trying to attach it to a debian qube (no dhclient)
I tried with someting like sudo ip link set up <interface> but no IP attached to it

Any ideas?

You mean you don’t have dhclient installed?
Did you remove it from your template? Even debian-12-minimal template has it installed.
Or maybe you launched it without sudo?

You can manually configure interface like this:

sudo ip addr add 10.11.99.2/24 dev ens6f0u5c2
1 Like