Questions tagged [dependencies]

Most software needs other software to work. Those "other softwares" are dependencies.

202 questions
0
votes
1 answer

Missing Package Dependency - CentOS - Amazon EC2

After running yum update --skip-broken I get the following: Packages skipped because of dependency problems: aws-cli-1.1.0-1.3.amzn1.noarch from amzn-main 1:perl-Compress-Raw-Zlib-2.020-129.el6.x86_64 from centos …
Mr. Meeseeks
  • 103
  • 4
0
votes
1 answer

NGINX Dependancy failure

When I try to ./configure nginx 1.4 or 1.5 i get the below. checking for OS + Linux 2.6.18-274.18.1.el5 x86_64 checking for C compiler ... not found ./configure: error: C compiler cc is not found So I try and install yum install GCC and get the…
Rhys
  • 146
  • 1
0
votes
1 answer

compiling php and its dependencies

I'm trying to compile php from source on ubuntu 13.04 but I'm struggling to find what dependencies i need to install using apt-get to get it to compile. Whats the easiest why to find what i need to install going by the configure command? for eg i…
Chris R
  • 213
  • 1
  • 2
  • 4
0
votes
1 answer

Segmentation fault while running Java with old GLIBC

I am trying to run Java 1.7.0_21-b11 with GLIBC 2.3.6. Java 7 requires at least GLIBC 2.4. I've tried this solution, so using ldd, I've found the following dependencies: ld-2.7.so ld-linux.so.2 libc.so.6 libdl.so.2 libpthread.so.0 I've copied…
h9lpq0u
  • 111
  • 3
0
votes
1 answer

Why can't RPM find dependencies, although they are installed?

Im' trying to rpm -ivh an RPM package. The install fails, saying that php53 dependencies are failing. However, I installed these packages in that very same version, so I don't understand why rpm doesn't find them : [xxxx@localhost 02.00.00]$ sudo…
SCO
  • 143
  • 1
  • 8
0
votes
1 answer

centos: packages of different architectures got messed up?

I am trying to install gdal-devel on the following machine: # cat /etc/redhat-release CentOS release 6.3 (Final) # uname -a Linux local 2.6.32-279.1.1.el6.x86_64 #1 SMP Tue Jul 10 13:47:21 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux and get a list…
arthur
  • 177
  • 2
  • 8
0
votes
2 answers

Can't get yum repository (ius) to install because of (epel) dependency that seems to be installed

So I'm trying to install the epel repository and then also install the ius repository. I'm managing this server with chef, and my run list goes ... "recipe[yum::yum]", "recipe[yum::epel]", "recipe[yum::ius]", ... And it installs the epel repository…
jondavidjohn
  • 101
  • 3
0
votes
1 answer

I appear to be getting a recurring dependency, how do I fix this?

I am trying to install make - normally I just type sudo apt-get install make and it works, but on this server I am getting the following; The following packages have unmet dependencies: git-core: Depends: libdigest-sha1-perl but it is not going to…
Toby
  • 630
  • 2
  • 7
  • 17
0
votes
1 answer

How to solve mysql server 5.5 update dependency issue?

since a month or two i cannot update package on my ubuntu server. The problem concern the mysql package which seems newer on the server that the minimum required ?? : lm@s8:~# sudo apt-get upgrade -f Lecture des listes de paquets...…
Loïc MICHEL
  • 236
  • 3
  • 11
0
votes
1 answer

Dependency loop while trying to install gcc on Fedora 17

I'm trying to yum install gcc but getting this message. Error: Package: glibc-common-2.15-37.fc17.i686 (@anaconda-0) Requires: glibc = 2.15-37.fc17 Removing: glibc-2.15-37.fc17.i686 (@anaconda-0) glibc = 2.15-37.fc17 …
Adam
  • 135
  • 1
  • 8
0
votes
2 answers

MYSQL 5.6 install error from missing dependency libaio

So I uninstalled mysql 5.1 and then downloaded the client, devel and server rpm's for mysql 5.6 I did a rpm -ivh of each rpm but got this error: error: Failed dependencies: libaio.so.1()(64bits) is needed by…
please delete me
  • 127
  • 1
  • 1
  • 5
0
votes
1 answer

How can I solve my dependency problems with a resolvconf/dnsmasq installation script?

I have the following Puppet module: class resolvconf { $packages = ['resolvconf', 'dnsmasq'] package { $packages: ensure => installed, } file { '/etc/resolvconf/resolv.conf.d/base': ensure => file, owner => root, …
CodeGnome
  • 285
  • 2
  • 9
0
votes
1 answer

Install PEAR Mail/Mime Dependency issues in pure EPEL installation

Newbie in the sysadm area. Using Centos 6.2. I am trying to install PEAR's Mime.php. I have successfully installed PEAR's Mail before. It's not going to well now for Mime.php. This is what I do: yum install php-pear-Mail-Mime Gives dependency…
Nicsoft
  • 203
  • 6
  • 15
0
votes
2 answers

Setting up Oracle Database in Oracle Linux

Good day, I am trying to install Oracle Database in Oracle Linux. However, it is looking for some dependencies. Anybody knows where I can get them? Package: gcc-3.4.6 FAILED Package: libaio-0.3.105 FAILED Package: glibc-2.3.4-2.41 FAILED …
Franz See
  • 189
  • 2
  • 5
  • 10
0
votes
2 answers

Setting LD_LIBRARY_PATH not enough?

I've edited my /etc/bashrc to set LD_LIBRARY_PATH like in my previous question that I asked. However it does not seem to be taking effect. Even though echo $LD_LIBRARY_PATH does show my modifications. And running my program:…
unixman83
  • 1,932
  • 8
  • 25
  • 33