Sponsored Content
Full Discussion: Shared-library error
Operating Systems Linux Shared-library error Post 302729261 by muzaffar.k on Friday 9th of November 2012 11:40:35 AM
Old 11-09-2012
thanks for the reply..

I am getting following output on non-working client

Code:
[root@mindlanf-1 ~]# ldd /usr/software/bin/sudo
        linux-gate.so.1 =>  (0xf770d000)
        libaudit.so.1 => not found
        libselinux.so.1 => not found
        libutil.so.1 => /lib/libutil.so.1 (0xf76f5000)
        libpam.so.0 => not found
        libdl.so.2 => /lib/libdl.so.2 (0xf76ef000)
        libldap-2.4.so.2 => not found
        liblber-2.4.so.2 => not found
        libc.so.6 => /lib/libc.so.6 (0xf7565000)
        /lib/ld-linux.so.2 (0xf770e000)
[root@mindlanf-1 ~]#

and below is the output of working client

Code:
[root@mindlanf-2 ~]# ldd /usr/software/bin/sudo
        linux-gate.so.1 =>  (0xb77d9000)
        libaudit.so.1 => /lib/libaudit.so.1 (0xb77af000)
        libselinux.so.1 => /lib/libselinux.so.1 (0xb7790000)
        libutil.so.1 => /lib/libutil.so.1 (0xb778c000)
        libpam.so.0 => /lib/libpam.so.0 (0xb777f000)
        libdl.so.2 => /lib/libdl.so.2 (0xb7779000)
        libldap-2.4.so.2 => /usr/lib/libldap-2.4.so.2 (0xb772d000)
        liblber-2.4.so.2 => /usr/lib/liblber-2.4.so.2 (0xb771f000)
        libc.so.6 => /lib/libc.so.6 (0xb7595000)
        /lib/ld-linux.so.2 (0xb77da000)
        libcrypt.so.1 => /lib/libcrypt.so.1 (0xb7565000)
        libresolv.so.2 => /lib/libresolv.so.2 (0xb754a000)
        libssl3.so => /usr/lib/libssl3.so (0xb7514000)
        libsmime3.so => /usr/lib/libsmime3.so (0xb74e9000)
        libnss3.so => /usr/lib/libnss3.so (0xb73af000)
        libnssutil3.so => /usr/lib/libnssutil3.so (0xb7394000)
        libplds4.so => /lib/libplds4.so (0xb7390000)
        libplc4.so => /lib/libplc4.so (0xb738a000)
        libnspr4.so => /lib/libnspr4.so (0xb734e000)
        libsasl2.so.2 => /usr/lib/libsasl2.so.2 (0xb7335000)
        libfreebl3.so => /lib/libfreebl3.so (0xb72e8000)
        libpthread.so.0 => /lib/libpthread.so.0 (0xb72cd000)
        libz.so.1 => /lib/libz.so.1 (0xb72b7000)
[root@mindlanf-2 ~]#

so what can be done to resolve this issue

thanks
Muzaffar

Last edited by vbe; 11-12-2012 at 09:07 AM.. Reason: code tags rm bold...
 

10 More Discussions You Might Find Interesting

1. Programming

Shared library creation error

Hi, I am facing problem while creating shared library using makeC++SharedLib_r. I am using the following command makeC++SharedLib_r -E rpcresolver.exp -L/home/myAccount/lib -lcxxbase -lfsbutil_r -lpthreads -bimport:/usr/lib/sna/appc_r.exp -o resolver-shared.o -p 0 rpcresolver.o Every time... (0 Replies)
Discussion started by: satguyz
0 Replies

2. Linux

load error while creating shared library

Hi, I am trying to create shared library. When i run the script to build the library i get these errors ld: warning: option -o appears more than once, first setting taken ld: fatal: file libgc.so.0: open failed: No such file or directory ld: fatal: File processing errors. No output written... (0 Replies)
Discussion started by: masg1
0 Replies

3. UNIX for Dummies Questions & Answers

Link error while linking a shared library in unix

Getting the following error , ld: /opt/syncsort39/lib/libsyncsort.sl: Mismatched ABI. 64-bit PA shared library found in 32-bit link. Is there any difference in the ld options in opt file while linking a 64 bit shared library ? Or is the problem because we are trying to link both 32 bit and 64... (3 Replies)
Discussion started by: arunkumar_mca
3 Replies

4. Programming

Shared memory in shared library

I need to create a shared library to access an in memory DB. The DB is not huge, but big enough to make it cumbersome to carry around in every single process using the shared library. Luckily, it is pretty static information, so I don't need to worry much about synchronizing the data between... (12 Replies)
Discussion started by: DreamWarrior
12 Replies

5. Programming

Shared memory for shared library

I am writing a shared library in Linux (but compatible with other UNIXes) and I want to allow multiple instances to share a piece of memory -- 1 byte is enough. What's the "best" way to do this? I want to optimize for speed and portability. Obviously, I'll have to worry about mutual exclusion. (0 Replies)
Discussion started by: otheus
0 Replies

6. Red Hat

RHEL5 reboot - error loading shared library

Hi All, I have RHEL 5 installed in my system. Something must has happened because when i reboot the server, it came with many error.. /usr/bin/rhgb-client -- error while loading shared libraries: libpopt.so.0. Can't open shared object files. No such file/directory It finnaly ends with the... (0 Replies)
Discussion started by: c00kie88
0 Replies

7. Shell Programming and Scripting

How to change a Makefile from building static library to shared library?

Hi: I have a library that it only offers Makefile for building static library. It built libxxx.a file. How do I in any way build a shared library? (either changin the Makefile or direct script or command to build shared library) Thanks. (1 Reply)
Discussion started by: cpthk
1 Replies

8. Programming

Error during making a shared library

Hi all, I am working with opensolaris and I am trying create a shared native library via using make but I am getting the following error-- make -f /Makefile.SunOS debug javah -jni SerialPort javah -jni SerialInputStream javah -jni SerialOutputStream gcc -mno-app-regs -DSUN... (4 Replies)
Discussion started by: smartgupta
4 Replies

9. Programming

Shared library with acces to shared memory.

Hello. I am new to this forum and I would like to ask for advice about low level POSIX programming. I have to implement a POSIX compliant C shared library. A file will have some variables and the shared library will have some functions which need those variables. There is one special... (5 Replies)
Discussion started by: iamjag
5 Replies

10. AIX

Add shared members from library to same library in a different directory

I'm trying to install libiconv to AIX 7.1 from an rpm off of the perzl site. The rpm appears to install but I get this error message. add shr4.o shared members from /usr/lib/libiconv.a to /opt/freeware/lib/libiconv.a add shr.o shared members from /usr/lib/libiconv.a to ... (5 Replies)
Discussion started by: kneemoe
5 Replies
bup-margin(1)						      General Commands Manual						     bup-margin(1)

NAME
bup-margin - figure out your deduplication safety margin SYNOPSIS
bup margin [options...] DESCRIPTION
bup margin iterates through all objects in your bup repository, calculating the largest number of prefix bits shared between any two entries. This number, n, identifies the longest subset of SHA-1 you could use and still encounter a collision between your object ids. For example, one system that was tested had a collection of 11 million objects (70 GB), and bup margin returned 45. That means a 46-bit hash would be sufficient to avoid all collisions among that set of objects; each object in that repository could be uniquely identified by its first 46 bits. The number of bits needed seems to increase by about 1 or 2 for every doubling of the number of objects. Since SHA-1 hashes have 160 bits, that leaves 115 bits of margin. Of course, because SHA-1 hashes are essentially random, it's theoretically possible to use many more bits with far fewer objects. If you're paranoid about the possibility of SHA-1 collisions, you can monitor your repository by running bup margin occasionally to see if you're getting dangerously close to 160 bits. OPTIONS
--predict Guess the offset into each index file where a particular object will appear, and report the maximum deviation of the correct answer from the guess. This is potentially useful for tuning an interpolation search algorithm. --ignore-midx don't use .midx files, use only .idx files. This is only really useful when used with --predict. EXAMPLE
$ bup margin Reading indexes: 100.00% (1612581/1612581), done. 40 40 matching prefix bits 1.94 bits per doubling 120 bits (61.86 doublings) remaining 4.19338e+18 times larger is possible Everyone on earth could have 625878182 data sets like yours, all in one repository, and we would expect 1 object collision. $ bup margin --predict PackIdxList: using 1 index. Reading indexes: 100.00% (1612581/1612581), done. 915 of 1612581 (0.057%) SEE ALSO
bup-midx(1), bup-save(1) BUP
Part of the bup(1) suite. AUTHORS
Avery Pennarun <apenwarr@gmail.com>. Bup unknown- bup-margin(1)
All times are GMT -4. The time now is 05:24 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy