+ Post New Thread
Page 1 of 2 12 LastLast
Results 1 to 15 of 21
*nix Thread, V.10 yum --> Missing Dependency: libssl.so.6 in Technical; [root@Fedora10-test hgs]# yum update Loaded plugins: refresh-packagekit Setting up Update Process Resolving Dependencies --> Running transaction check ---> Package libssh2.i386 ...
  1. #1
    llawwehttam's Avatar
    Join Date
    Nov 2008
    Location
    Birmingham
    Posts
    215
    Blog Entries
    2
    Thank Post
    50
    Thanked 3 Times in 3 Posts
    Rep Power
    11

    V.10 yum --> Missing Dependency: libssl.so.6

    [root@Fedora10-test hgs]# yum update
    Loaded plugins: refresh-packagekit
    Setting up Update Process
    Resolving Dependencies
    --> Running transaction check
    ---> Package libssh2.i386 0:0.18-9.el5 set to be updated
    --> Processing Dependency: libssl.so.6 for package: libssh2
    --> Processing Dependency: libcrypto.so.6 for package: libssh2
    --> Finished Dependency Resolution
    libssh2-0.18-9.el5.i386 from epel has depsolving problems
    --> Missing Dependency: libcrypto.so.6 is needed by package libssh2-0.18-9.el5.i386 (epel)
    libssh2-0.18-9.el5.i386 from epel has depsolving problems
    --> Missing Dependency: libssl.so.6 is needed by package libssh2-0.18-9.el5.i386 (epel)
    Error: Missing Dependency: libcrypto.so.6 is needed by package libssh2-0.18-9.el5.i386 (epel)
    Error: Missing Dependency: libssl.so.6 is needed by package libssh2-0.18-9.el5.i386 (epel)


    i tried :[root@Fedora10-test hgs]# yum install libcrypto.so.6
    Loaded plugins: refresh-packagekit
    Setting up Install Process
    Parsing package install arguments
    No package libcrypto.so.6 available.
    Nothing to do

    and :
    [root@Fedora10-test hgs]# yum install libssl.so.6
    Loaded plugins: refresh-packagekit
    Setting up Install Process
    Parsing package install arguments
    No package libssl.so.6 available.
    Nothing to do

    it turns out fedora 10 has libssl.so.7 and libcrypto.so.7 but this is stopping yum update working
    thanks for any help

  2. IDG Tech News
  3. #2


    Join Date
    Feb 2007
    Location
    Northamptonshire
    Posts
    4,564
    Thank Post
    344
    Thanked 763 Times in 689 Posts
    Rep Power
    280
    I'm not a fedora man but I'd suggest disabling the EPEL repository and try and update then.

  4. #3

    Join Date
    Aug 2005
    Location
    London
    Posts
    3,122
    Blog Entries
    2
    Thank Post
    111
    Thanked 516 Times in 446 Posts
    Rep Power
    117
    I remember having similar problems with FreeBSD and read various recommendations that you just make a symlink to point to (say) libssl.so.7

    this feels horribly wrong but it might be worth a try :-)

  5. #4
    llawwehttam's Avatar
    Join Date
    Nov 2008
    Location
    Birmingham
    Posts
    215
    Blog Entries
    2
    Thank Post
    50
    Thanked 3 Times in 3 Posts
    Rep Power
    11
    what exactly do you you mean by that and how do i do it
    thanks

  6. #5

    Gatt's Avatar
    Join Date
    Jan 2006
    Posts
    5,942
    Thank Post
    783
    Thanked 484 Times in 343 Posts
    Rep Power
    276
    do this:

    # cd /lib
    # ln -s libssl.so.7 libssl.so.6
    # ls


    A Symbolic link is a bit like a shortcut - so libssl.so.6 acts like a shortcut to libssl.so.7

    if you do ls -l in the /lib you will see something like this:

    Code:
    # ls -l 
    lrwxrwxrwx  1 root root      11 2009-02-20 11:24 libssl.so.6 -> libssl.so.7
    lrwxrwxrwx  1 root root      16 2009-02-18 21:06 libssl.so.7 -> libssl.so.0.9.8g
    Last edited by Gatt; 20th February 2009 at 11:27 AM.

  7. #6
    llawwehttam's Avatar
    Join Date
    Nov 2008
    Location
    Birmingham
    Posts
    215
    Blog Entries
    2
    Thank Post
    50
    Thanked 3 Times in 3 Posts
    Rep Power
    11
    didnt really work but thanks anyway

    got
    [root@Fedora10-test lib]# yum update
    Loaded plugins: refresh-packagekit
    Setting up Update Process
    Resolving Dependencies
    --> Running transaction check
    ---> Package libssh2.i386 0:0.18-9.el5 set to be updated
    --> Processing Dependency: libssl.so.6 for package: libssh2
    --> Processing Dependency: libcrypto.so.6 for package: libssh2
    --> Finished Dependency Resolution
    libssh2-0.18-9.el5.i386 from epel has depsolving problems
    --> Missing Dependency: libcrypto.so.6 is needed by package libssh2-0.18-9.el5.i386 (epel)
    libssh2-0.18-9.el5.i386 from epel has depsolving problems
    --> Missing Dependency: libssl.so.6 is needed by package libssh2-0.18-9.el5.i386 (epel)
    Error: Missing Dependency: libcrypto.so.6 is needed by package libssh2-0.18-9.el5.i386 (epel)
    Error: Missing Dependency: libssl.so.6 is needed by package libssh2-0.18-9.el5.i386 (epel)

    any more help appreciated

  8. #7

    RabbieBurns's Avatar
    Join Date
    Apr 2008
    Location
    Sydney
    Posts
    5,304
    Blog Entries
    6
    Thank Post
    1,250
    Thanked 456 Times in 296 Posts
    Rep Power
    156
    yum install openssl

    Maybe?

  9. #8
    llawwehttam's Avatar
    Join Date
    Nov 2008
    Location
    Birmingham
    Posts
    215
    Blog Entries
    2
    Thank Post
    50
    Thanked 3 Times in 3 Posts
    Rep Power
    11
    [root@Fedora10-test hgs]# yum install openssl
    Loaded plugins: refresh-packagekit
    Setting up Install Process
    Parsing package install arguments
    Package openssl-0.9.8g-12.fc10.i686 already installed and latest version
    Nothing to do

    thats the problem it needs an earlier version

  10. #9

    RabbieBurns's Avatar
    Join Date
    Apr 2008
    Location
    Sydney
    Posts
    5,304
    Blog Entries
    6
    Thank Post
    1,250
    Thanked 456 Times in 296 Posts
    Rep Power
    156
    what does the results of Gatts suggestion show?

    ls -l /lib/libcrypto.so.*

  11. #10

    Gatt's Avatar
    Join Date
    Jan 2006
    Posts
    5,942
    Thank Post
    783
    Thanked 484 Times in 343 Posts
    Rep Power
    276
    yeah checked my F10 install - openssl provides libssl.so.7 not 6...
    Cant find any rpm that provides 6 yet

  12. #11
    llawwehttam's Avatar
    Join Date
    Nov 2008
    Location
    Birmingham
    Posts
    215
    Blog Entries
    2
    Thank Post
    50
    Thanked 3 Times in 3 Posts
    Rep Power
    11
    [root@Fedora10-test hgs]# ls -l libssl.so.7 libssl.so.6
    lrwxrwxrwx 1 root root 11 2009-02-20 12:08 libssl.so.6 -> libssl.so.7
    lrwxrwxrwx 1 root root 11 2009-02-20 12:08 libssl.so.7 -> libssl.so.7

    any other suggestions???

  13. #12

    Gatt's Avatar
    Join Date
    Jan 2006
    Posts
    5,942
    Thank Post
    783
    Thanked 484 Times in 343 Posts
    Rep Power
    276
    Quote Originally Posted by llawwehttam View Post
    [root@Fedora10-test hgs]# ls -l libssl.so.7 libssl.so.6
    lrwxrwxrwx 1 root root 11 2009-02-20 12:08 libssl.so.6 -> libssl.so.7
    lrwxrwxrwx 1 root root 11 2009-02-20 12:08 libssl.so.7 -> libssl.so.7

    any other suggestions???
    libssl.so.7 is linked to itself? (if colour is on it appears red)

    do an ls -l libssl* and look for something like libssl.so.0.9.8g
    then remove the libssl.so.7 (rm libssl.so.7) and recreate it to the libssl.so.0.9.8g from earlier.

    # cd /lib
    # ls -l libssl*
    # rm libssl.so.7
    # ln -s libssl.so.0.9.8g libssl.so.7

    (replace libssl.so.0.9.8g with yours..)

  14. #13
    llawwehttam's Avatar
    Join Date
    Nov 2008
    Location
    Birmingham
    Posts
    215
    Blog Entries
    2
    Thank Post
    50
    Thanked 3 Times in 3 Posts
    Rep Power
    11
    [root@Fedora10-test lib]# ls -l libssl*
    -rwxr-xr-x 1 root root 196652 2009-01-23 05:53 libssl3.so
    -rwxr-xr-x 1 root root 304564 2009-01-07 15:29 libssl.so.0.9.8g
    lrwxrwxrwx 1 root root 11 2009-02-20 11:31 libssl.so.6 -> libssl.so.7
    lrwxrwxrwx 1 root root 16 2009-02-18 14:35 libssl.so.7 -> libssl.so.0.9.8g

    like this

    [root@Fedora10-test hgs]# yum update
    Loaded plugins: refresh-packagekit
    Setting up Update Process
    Resolving Dependencies
    --> Running transaction check
    ---> Package libssh2.i386 0:0.18-9.el5 set to be updated
    --> Processing Dependency: libssl.so.6 for package: libssh2
    --> Processing Dependency: libcrypto.so.6 for package: libssh2
    --> Finished Dependency Resolution
    libssh2-0.18-9.el5.i386 from epel has depsolving problems
    --> Missing Dependency: libcrypto.so.6 is needed by package libssh2-0.18-9.el5.i386 (epel)
    libssh2-0.18-9.el5.i386 from epel has depsolving problems
    --> Missing Dependency: libssl.so.6 is needed by package libssh2-0.18-9.el5.i386 (epel)
    Error: Missing Dependency: libcrypto.so.6 is needed by package libssh2-0.18-9.el5.i386 (epel)
    Error: Missing Dependency: libssl.so.6 is needed by package libssh2-0.18-9.el5.i386 (epel)

    no difference

  15. #14
    llawwehttam's Avatar
    Join Date
    Nov 2008
    Location
    Birmingham
    Posts
    215
    Blog Entries
    2
    Thank Post
    50
    Thanked 3 Times in 3 Posts
    Rep Power
    11
    oooh but for libcrypt i get

    [root@Fedora10-test lib]# ls -l libcrypt*
    -rwxr-xr-x 1 root root 49512 2008-12-08 13:33 libcrypt-2.9.so
    -rwxr-xr-x 1 root root 1350672 2009-01-07 15:29 libcrypto.so.0.9.8g
    lrwxrwxrwx 1 root root 19 2009-02-18 14:35 libcrypto.so.7 -> libcrypto.so.0.9.8g
    lrwxrwxrwx 1 root root 22 2009-02-18 13:39 libcryptsetup.so.0 -> libcryptsetup.so.0.0.0
    -rwxr-xr-x 1 root root 55224 2008-10-30 10:47 libcryptsetup.so.0.0.0
    lrwxrwxrwx 1 root root 15 2009-02-18 14:30 libcrypt.so.1 -> libcrypt-2.9.so
    lrwxrwxrwx 1 root root 13 2009-02-20 11:32 libcrypt.so.6 -> libcrypt.so.7

    last bit is red???

  16. #15

    Gatt's Avatar
    Join Date
    Jan 2006
    Posts
    5,942
    Thank Post
    783
    Thanked 484 Times in 343 Posts
    Rep Power
    276
    it should be

    libcrypto.so.6 -> libcrypto.so.7

    your missing the 'o' and the end of libcrypto
    remove the symlink and re-create it

SHARE:
+ Post New Thread
Page 1 of 2 12 LastLast

Similar Threads

  1. Replies: 16
    Last Post: 23rd February 2009, 01:20 PM
  2. Using Fedora 9
    By nephilim in forum *nix
    Replies: 5
    Last Post: 17th November 2008, 12:54 PM
  3. Fedora & FOG Imaging
    By mmoseley in forum General Chat
    Replies: 0
    Last Post: 4th February 2008, 09:49 PM
  4. Karoshi on Fedora Core 5
    By fooby in forum *nix
    Replies: 22
    Last Post: 16th June 2006, 12:52 PM
  5. My Fedora server won't boot
    By StewartKnight in forum *nix
    Replies: 7
    Last Post: 10th January 2006, 04:05 PM

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •