-
-
Notifications
You must be signed in to change notification settings - Fork 305
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error loading needed lib libpcap.so.0.8 #2282
Comments
that library |
@ptitSeb, thank you for a fast reply! this means all i need is just copy this lib file from my desktop x86_64 Ubuntu to RPi3 and it will work? |
Yeah, it will pickup the lib and continue from there.... |
Ok, now i get new issue: @ptitSeb, is there a way to fix it? |
Well, I need to add that syscall to box64. It's |
Thank you! |
So, I decided to add wrapped libpcap instead. So it should works better now, unless it used one of the few symbols still not wrapped (it will complains about missing symbol in that case) |
@ptitSeb, thanks. So what should i do to try it? Reinstall pre-built package will be enough? Or i have to build it from source ? |
It's up to you. If you want to test right now, you need to build from source. Else, you'll have to wait for the pre-built package to be updated (tomorrow I guess?). |
ok, i built it from source using git clone, this error still here with following output: i guess i have to wait for pre-built package update |
Ok, I pushed a small fix, can you update and try again? |
Well, i built again, libpcap issue is gone, but still not working. Now output looks like this: lantern runtime stack: goroutine 1 gp=0xa80061c0 m=0 mp=0x2e25560 [running, locked to thread]: goroutine 18 gp=0xa809a380 m=nil [force gc (idle)]: goroutine 19 gp=0xa809a540 m=nil [GC sweep wait]: goroutine 20 gp=0xa809a700 m=nil [GC scavenge wait]: goroutine 2 gp=0xa8007340 m=nil [finalizer wait]: It seems like fixing it will be a long shot... |
Oh, it's a go program.... they tend to just not work with box64, for some yet unknown reason... sorry. |
@ptitSeb, it's ok. Thank you for trying. I will look for another vpn that works on raspberry pi |
Hi everyone,
I am trying to run lantern on my Raspberry Pi 3 with box64 installed from pre-built package. I get the following output:
lantern
Running installation script...
/usr/lib/lantern/lantern-binary: OK
Dynarec for ARM64, with extension: ASIMD CRC32
Running on Cortex-A53 with 4 cores, pagesize: 4096
Will use hardware counter measured at 19.2 MHz emulating 2.4 GHz
Params database has 105 entries
Box64 with Dynarec v0.3.3 c98b4c8 built on Jan 21 2025 06:36:32
BOX64: Didn't detect 48bits of address space, considering it's 39bits
Counted 33 Env var
BOX64 LIB PATH: BOX64 BIN PATH: ./:bin/:/usr/local/sbin/:/usr/local/bin/:/usr/sbin/:/usr/bin/:/sbin/:/bin/:/usr/local/games/:/usr/games/
Looking for /home/ivan/.lantern/bin/lantern
Rename process to "lantern"
Using native(wrapped) libresolv.so.2
Using native(wrapped) libayatana-appindicator3.so.1
Using native(wrapped) libgtk-3.so.0
Using native(wrapped) libgdk-3.so.0
Using native(wrapped) libgobject-2.0.so.0
Using native(wrapped) libglib-2.0.so.0
Using native(wrapped) libgio-2.0.so.0
Using native(wrapped) libgmodule-2.0.so.0
Using native(wrapped) libgdk_pixbuf-2.0.so.0
Using native(wrapped) libpangocairo-1.0.so.0
Using native(wrapped) libpango-1.0.so.0
Using native(wrapped) libcairo.so.2
Using native(wrapped) libpthread.so.0
Using native(wrapped) libdl.so.2
Error loading needed lib libpcap.so.0.8
Using emulated /usr/lib/box64-x86_64-linux-gnu/libstdc++.so.6
Using native(wrapped) libm.so.6
Using emulated /usr/lib/box64-x86_64-linux-gnu/libgcc_s.so.1
Using native(wrapped) libc.so.6
Using native(wrapped) ld-linux-x86-64.so.2
Using native(wrapped) libutil.so.1
Using native(wrapped) librt.so.1
Using native(wrapped) libbsd.so.0
Error loading one of needed lib
Error: Loading needed libs in elf /home/ivan/.lantern/bin/lantern
It looks like it can not find libpcap.so.0.8, however when i try to install it by command
sudo apt install libpcap0.8 libpcap0.8-dev
i get:
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
libpcap0.8 is already the newest version (1.10.3-1).
libpcap0.8-dev is already the newest version (1.10.3-1).
0 upgraded, 0 newly installed, 0 to remove and 75 not upgraded.
What is wrong here?
The text was updated successfully, but these errors were encountered: