Questions tagged [library]
52 questions
2
votes
1 answer
Installing rsvg lib on second install of Python
I have two installs of python on my RHEL server, one at version 2.4.x (which is the general install by RHEL, updated using yum) and a 2.6.x version that I use for Django as well as just everyday scripting (installed from source).
I'd like to get the…

Jordan Reiter
- 1,290
- 4
- 20
- 40
1
vote
0 answers
What if AIX dynamic library imports one of symbols from wrong place
I have a legacy AIX ppc64 library mylib.so.
Inspecting dump -Tv output, I noticed it expects that Foo symbol would be present in even older library oldfoo.so. However, it seems after new foo release, they moved Foo symbol to other soname:…

Alexander Tumin
- 113
- 3
1
vote
1 answer
Ansible: trying to put conditionals on a vars file
I'm working on a project that will use a number of devices that will need to be configured with the same plays, but separate variables. I have a vars file which includes a number of libraries, one for each device. The name of the library matches the…

Disco King
- 11
- 2
1
vote
0 answers
Installing a Library on Centos Server
We have one NIS server in our lab and want to install Blas library on it.
We have one Master computer, one file server computer, and 13 clusters and all are using Centos. My question is how can we do it and where should we install it? on File…

Ahmadreza Ahmadi
- 11
- 1
1
vote
0 answers
Apache2 and LD_PRELOAD libraries wrapping
I'm trying to load a custom library on an Apache2 web server.
On Unix systems, I know it's possible to do it using the LD_PRELOAD variable.
I've configured /etc/apache2/envvars file to preload my library, appending an export…

auino
- 143
- 7
1
vote
4 answers
Can't find shared lib on an amd64 machine
# /opt/dev/android-sdk/platforms/android-1.5/tools/aapt
/opt/dev/android-sdk/platforms/android-1.5/tools/aapt: error while loading shared libraries: libz.so.1: cannot open shared object file: No such file or directory
On an i386 box this aapt…

yanchenko
- 279
- 1
- 6
- 13
1
vote
0 answers
GitLab, error while installing Gems, libmysqlclient-dev probabily missing but unistallable
So, while I was installing GitLab following the official tutorial I got an error on the Gems installation.
Gem files will remain installed in /home/git/gitlab/vendor/bundle/ruby/2.0.0/gems/mysql2-0.3.11 for inspection.
Results logged to…

elect
- 203
- 4
- 17
1
vote
1 answer
Does the mysql Client API Library version have to match the installed MySQL/Percona server version?
I'm running Scientific Linux 6.3 (binary compaible with Redhat/CentOS/etc..) as a LAMP stack.
I've installed Percona server and client v5.5 from the Percona yum repository. However when I run phpinfo() I notice that under the MySQL and mysqli…

William Jamieson
- 13
- 3
1
vote
1 answer
Running 32 bit userland on Redhat
I have a third party python API thats only available in 32 bit (ELF 32-bit LSB shared object) that I need to run on a x64 RedHat server. Of course this doesn't work smothly since the python installation is 64 bit. I figure that the way to solve this…

Vegar Westerlund
- 198
- 5
1
vote
1 answer
libidn.so exists, but a cgi can't find it
I have a Debian 6 server, 64 bits...
I checked ldconfig, ldconfig path, symbolic links... , rebooted and so on... but still a cgi can't find libidn.so.11. The package libidn11 is installed (including, just in case, libidn11-dev and…
user119205
1
vote
3 answers
Missing dependency libmysqlclient.so.16 on Centos 5.7
I have an app compiled on (32 bit) Centos 6.2, which I need to run on Centos 5.7 but it complains that it needs libmysqlclient.so.16
I'm not sure where to find this file (I tried "yum provides" but nothing provides it). I have the epel repo enabled…

TSG
- 1,674
- 7
- 32
- 51
1
vote
2 answers
How to install precompiled binaries in linux
I am trying to install a pre-compiled sqlite version 3 (sqlite3) binary in linux. I created a directory /home/username/src and I placed the zip file in the directory then unzipped the file. What I was left with was sqlite3. When I try to use it I…
princess
1
vote
3 answers
How do I figure out what dynamic libraries are loaded by a Unix process?
I want to run a Unix program which runs for a few seconds, without sacrificing speed of execution.
After it is done, I would like to know what dynamic (shared) libraries it used.
What is the appropriate command?
The main problem is that I have a…

Joseph Turian
- 265
- 2
- 7
1
vote
3 answers
Library Won't Update
I'm trying to update my libarchive library on CentOS 7. Currently, I have version 3.1.2. If I type the following command, here is the result:
# rpm -q libarchive
libarchive-3.1.2-10.el7_2.x86_64
I was able to find an .rpm file, online, which…

Steven
- 11
- 2
1
vote
1 answer
Where shared object is located in Linux
I want to know, where .so file information got stored in linux? I am looking for libruby.so.2.6.
When I searched in internet, ld.so first starts the search with LD_LIBRARY_PATH and then it will look for ld.so.conf file and cache files and then the…

Kishore Kumar
- 19
- 2