Forums

Skip to content

Advanced search
  • Quick links
    • Unanswered topics
    • Active topics
    • Search
  • FAQ
  • Login
  • Register
  • Board index Assistance Portage & Programming
  • Search

emerge broken

Problems with emerge or ebuilds? Have a basic programming question about C, PHP, Perl, BASH or something else?
Post Reply
Advanced search
14 posts • Page 1 of 1
Author
Message
actaea
n00b
n00b
Posts: 6
Joined: Fri Jan 05, 2007 3:16 pm

emerge broken

  • Quote

Post by actaea » Sun Feb 18, 2007 7:43 pm

Whenever I try to emerge any program, I get this error message
/usr/bin/wget: error while loading shared libraries: libssl.so.0.9.7: cannot open shared object file: No such file or directory
but

emerge program -p

works fine.

I have my suspicions about what happened. I'm new to Gentoo and finally got everything working, but I wanted better fonts and did some research and downloaded the fonts. The instructions then suggested emerge -avuDN world which I did. I haven't yet emerged gentoolkit and don't seem to be able to do that either--if revdep-rebuild would help in this case. Thanks for any help!
Top
Genone
Retired Dev
Retired Dev
User avatar
Posts: 9656
Joined: Fri Mar 14, 2003 6:02 pm
Location: beyond the rim

  • Quote

Post by Genone » Sun Feb 18, 2007 8:13 pm

try

Code: Select all

FETCHCOMMAND='/bin/busybox.static wget -P "${DISTDIR}" "${URI}"' emerge wget
Top
klessou
n00b
n00b
Posts: 40
Joined: Sat Sep 02, 2006 7:01 pm

  • Quote

Post by klessou » Sun Feb 18, 2007 8:59 pm

Thx, It works for me.
Top
klessou
n00b
n00b
Posts: 40
Joined: Sat Sep 02, 2006 7:01 pm

  • Quote

Post by klessou » Sun Feb 18, 2007 9:03 pm

Arg :-(

Code: Select all

bash: /usr/bin/emerge: No such file or directory 
Juste after :-(
Top
actaea
n00b
n00b
Posts: 6
Joined: Fri Jan 05, 2007 3:16 pm

  • Quote

Post by actaea » Sun Feb 18, 2007 9:37 pm

I tried the FETCHCOMMAND command and I'm still having problems.
My machine appears to be trying to download wget-1.10.2.tar.gz at every gentoo mirror, but it now claims that /usr/bin/wget doesn't exist.

It is in fact correct.
Top
actaea
n00b
n00b
Posts: 6
Joined: Fri Jan 05, 2007 3:16 pm

  • Quote

Post by actaea » Sun Feb 18, 2007 9:43 pm

Also, I having other problems related to libssl.so.0.9.7 besides not being able to emerge.
Top
dj_choco
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 144
Joined: Sun Oct 13, 2002 12:06 am
Location: North America

  • Quote

Post by dj_choco » Mon Feb 19, 2007 1:47 am

I manually donwloaded each required file (for example):

Code: Select all

http://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/wget-1.10.2-gentoo-0.2.tar.bz2
ftp://ftp.man.poznan.pl/pub/gnu/gnu/wget/wget-1.10.2.tar.gz
and placed each in /usr/portage/distfiles/

wget functionality restored.

Thanks to the Gentoo forums (Spanish version): libssl problem

Now to see of all of the other libssl issues will be fixed :-)
Top
Sleipnir
Guru
Guru
User avatar
Posts: 372
Joined: Tue Sep 20, 2005 7:12 pm
Location: Germany

  • Quote

Post by Sleipnir » Mon Feb 19, 2007 9:05 am

I have exactly the same problem while doing a stage 3 install.
After unpacking the stage and portage tree and configure the
make.conf I remerged / updated the system using:

Code: Select all

emerge --sync
emerge -uDN system
The error arises after a new version of openssl is merged and
the version 0.9.7 is cleaned out automatically. Afterwards wget
isn't working anymore.

Maybe a dependency is missing, that stops portage to unmerge
the openssl library linked with wget?!?
A)bort, R)etry, I)nfluence with large hammer.
Top
al.gravier
n00b
n00b
Posts: 1
Joined: Mon Feb 19, 2007 10:24 pm
Location: Poland//France//Singapore

quick fix

  • Quote

Post by al.gravier » Mon Feb 19, 2007 10:30 pm

i did

Code: Select all

ln /usr/lib/libssl.so.0.9.8 /lib/libssl.so.0.9.7 
and it's fixed. temporarily of course.

(and also hello world i'm new here)
Top
he11e
n00b
n00b
Posts: 3
Joined: Wed Dec 27, 2006 10:44 am

  • Quote

Post by he11e » Tue Feb 20, 2007 7:25 am

on my machine this worked

Code: Select all

# FETCHCOMMAND='/bin/busybox wget -P "${DISTDIR}" "${URI}"' emerge -va wget
(just busybox, not busybox.static)

thanks for this thread :)

cheers! 8)
Top
Sleipnir
Guru
Guru
User avatar
Posts: 372
Joined: Tue Sep 20, 2005 7:12 pm
Location: Germany

  • Quote

Post by Sleipnir » Tue Feb 20, 2007 8:15 am

Another possibility is to download the wget files
  • http://distfiles.gentoo.org/distfiles/w ... .2.tar.bz2
  • http://distfiles.gentoo.org/distfiles/w ... 0.2.tar.gz
to '/usr/portage/distfiles' using links and
afterwards remerge wget via

Code: Select all

FETCHCOMMAND='/bin/true' emerge --nodeps wget 
A)bort, R)etry, I)nfluence with large hammer.
Top
PGDubbin
n00b
n00b
Posts: 55
Joined: Thu Apr 06, 2006 4:01 am

  • Quote

Post by PGDubbin » Wed Feb 21, 2007 7:06 am

Interesting, I had this same problem with emerge after a fresh install of 2006.1 on a new box I got.

However, now when I try to load some programs that call upon libssl, I get the same error message:

Code: Select all

$ mplayer
mplayer: error while loading shared libraries: libssl.so.0.9.7: cannot open shared object file: No such file or directory
$
Top
Sleipnir
Guru
Guru
User avatar
Posts: 372
Joined: Tue Sep 20, 2005 7:12 pm
Location: Germany

  • Quote

Post by Sleipnir » Wed Feb 21, 2007 8:13 am

Nice. It seems that the emerge autoclean doesn't take dependencies on openssl into account, because this
happened (at least on my side) after a new version of openssl was installed and the 0.9.7 was cleaned out
by the autoclean process of the merge.
A)bort, R)etry, I)nfluence with large hammer.
Top
PGDubbin
n00b
n00b
Posts: 55
Joined: Thu Apr 06, 2006 4:01 am

  • Quote

Post by PGDubbin » Wed Feb 21, 2007 4:48 pm

Is this a bug or something with emerge?

Now after mplayer fails to load (and I assume everything that uses libssll (openssl?) ), I get the failure on new emerges, trying the wget workaround you mentioned above.

EDIT: Check, with the reemerge on wget, now mplayer works, and emerge works.
Top
Post Reply

14 posts • Page 1 of 1

Return to “Portage & Programming”

Jump to
  • Assistance
  • ↳   News & Announcements
  • ↳   Frequently Asked Questions
  • ↳   Installing Gentoo
  • ↳   Multimedia
  • ↳   Desktop Environments
  • ↳   Networking & Security
  • ↳   Kernel & Hardware
  • ↳   Portage & Programming
  • ↳   Gamers & Players
  • ↳   Other Things Gentoo
  • ↳   Unsupported Software
  • Discussion & Documentation
  • ↳   Documentation, Tips & Tricks
  • ↳   Gentoo Chat
  • ↳   Gentoo Forums Feedback
  • ↳   Duplicate Threads
  • International Gentoo Users
  • ↳   中文 (Chinese)
  • ↳   Dutch
  • ↳   Finnish
  • ↳   French
  • ↳   Deutsches Forum (German)
  • ↳   Diskussionsforum
  • ↳   Deutsche Dokumentation
  • ↳   Greek
  • ↳   Forum italiano (Italian)
  • ↳   Forum di discussione italiano
  • ↳   Risorse italiane (documentazione e tools)
  • ↳   Polskie forum (Polish)
  • ↳   Instalacja i sprzęt
  • ↳   Polish OTW
  • ↳   Portuguese
  • ↳   Documentação, Ferramentas e Dicas
  • ↳   Russian
  • ↳   Scandinavian
  • ↳   Spanish
  • ↳   Other Languages
  • Architectures & Platforms
  • ↳   Gentoo on ARM
  • ↳   Gentoo on PPC
  • ↳   Gentoo on Sparc
  • ↳   Gentoo on Alternative Architectures
  • ↳   Gentoo on AMD64
  • ↳   Gentoo for Mac OS X (Portage for Mac OS X)
  • Board index
  • All times are UTC
  • Delete cookies

© 2001–2026 Gentoo Foundation, Inc.

Powered by phpBB® Forum Software © phpBB Limited

Privacy Policy

 

 

magic