Wget error version FBSD_1.7 required

Scorpionhunt

Cadet
Joined
Sep 16, 2022
Messages
4
Hi,
I try to install NextCloud in a jail following Samuel Dowling instructions.
I sucessfully installed wget with
Code:
pkg install wget ca_root_nss

Everything worked fine so far till this step:
Code:
root@nextcloud:/tmp $ wget https://download.nextcloud.com/server/releases/latest.tar.bz2

Then the console spits out:
Code:
ld-elf.so.1: /lib/libc.so.7: version FBSD_1.7 required by /usr/local/bin/wget not found


When i use
Code:
freebsd-version
it states
Code:
13.0-RELEASE-p13
.

Thank you for your help and I apologiseif I missed something really obvious, I'm still new to all this stuff.

Greetings
 

lburgazzoli

Cadet
Joined
Nov 4, 2022
Messages
1
Same issue here

Code:
# wget
ld-elf.so.1: /lib/libc.so.7: version FBSD_1.7 required by /usr/local/bin/wget not found

# freebsd-version
13.0-RELEASE-p13
 

Dirk

Patron
Joined
May 23, 2016
Messages
206
Same here after uping the jail to 13.0. Error the same but with sabnzbd trying to start.
 

dedebenui

Cadet
Joined
Nov 11, 2022
Messages
2
Same error trying to run Python 3.9 :

Code:
ld-elf.so.1: /lib/libc.so.7: version FBSD_1.7 required by /usr/local/lib/libpython3.9.so.1.0 not found


even though /lib/libc.so.7 is present
 

Patrick M. Hausen

Hall of Famer
Joined
Nov 25, 2013
Messages
7,776
You do not need wget. Just use fetch which is in the FreeBSD base system. Then you should upgrade your jail to a supported release, i.e. 13.1-p3.

EDIT: re-reading this thread I get it. Your jail is FreeBSD 13.0. You did a pkg install wget, right? Well, with 13.0 EOL all packages are built for 13.1 now. That's why the wget binary - or probably every binary you install with pkg - does not match your OS libraries in the jail, anymore.

So: definitely upgrade your jails and your problems will likely go away.

HTH,
Patrick
 
Last edited:
Top