bordaigorl / rmview

A live viewer for reMarkable written in PyQt5
GNU General Public License v3.0
742 stars 61 forks source link

RM Version 3.6 - libcrypto.so.1.1 not found #153

Open rsoeldner opened 10 months ago

rsoeldner commented 10 months ago

I'm seeing the following error:

[INFO] Detected reMarkable 2.0
[INFO] Using backend 'vncserver'
[INFO] <class 'PyQt5.QtCore.QFile'> <class 'PyQt5.QtCore.QIODevice'>
[INFO] Starting VNC server (command=$HOME/rM-vnc-server-standalone)
[INFO] Start command stdout output: /home/root/rM-vnc-server-standalone: error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory
[INFO] Stopping VNC server...

Is RM Version 3.6 not supported?

bordaigorl commented 10 months ago

Can you try again but setting "backend": "screenshare" in the config file?

This seems to be an issue reported in #146 : the new RM versions report a wrong version number🤦🏻 , so rmview thinks it's dealing with an old model without the new screenshare feature, and tries to use a custom VNC server which is incompatible with the new firmware

rsoeldner commented 10 months ago

Now its not progressing:

[INFO] Using known hosts file: /home/rsoeldner/.config/rmview_known_hosts
[INFO] Loaded known hosts from /home/rsoeldner/.config/rmview_known_hosts
[INFO] Connecting...
[INFO] Connected to 192.168.2.149
[INFO] Detected reMarkable 2.0
[INFO] Using backend 'screenshare'
[INFO] Connecting to ScreenShare, make sure you enable it
[WARNING] Skipping authentication

The GUI still says Connection to reMarkable...

Any thoughts?

bordaigorl commented 10 months ago

Yes the issue is that it's now skipping authentication for the same reason. You need to bypass that decision one way or another to see if that's the only obstacle. You can obtain that by either changing the version in /etc/version on the tablet or changing slightly the code of rmview. Are you comfortable with connecting via ssh to the tablet (or messing with python)?

pleich commented 10 months ago

I have the same issue, I would be comfortable doing so. Any hints where to start ?

bordaigorl commented 10 months ago

@pleich see the last few comments on #146