I am trying to install libsctp on redhat. There is a chain of dependencies. How to install all libraries/dependencies in this group?
configure: error: --with-sctp given but cannot find libsctp [root#localhost libfixbuf-1.7.1]# cd ../Downloads/ [root#localhost Downloads]# rpm -ivh libsctp1-1.0.11-4-mdv2012.0.i586.rpm warning: libsctp1-1.0.11-4-mdv2012.0.i586.rpm: Header V3 DSA/SHA1 Signature, key ID 26752624: NOKEY Preparing... ########################################### [100%] package libsctp1-1.0.11-4.i586 is already installed [root#localhost Downloads]#
I am trying to install libfixbuf using ./configure --with-sctp The error thrown says that sctp is not installed. though it is installed
Solved the issue.. Installed lksctp-tools-1.0.16. That solved the problem
Solved the issue.. Installed lksctp-tools-1.0.16. That solved the problem
Related
While installing git in redhat linux it asked for few dependencies for installation of git.
i downloaded them nut while installing it throughs below error.
[root#sudhakar ~]# rpm -ivh git-1.7.1-2.el6_0.1.x86_64.rpm
warning: git-1.7.1-2.el6_0.1.x86_64.rpm: Header V4 DSA/SHA1 Signature, key ID 192a7d7d: NOKEY
error: Failed dependencies:
perl(Git) is needed by git-1.7.1-2.el6_0.1.x86_64
perl-Git = 1.7.1-2.el6_0.1 is needed by git-1.7.1-2.el6_0.1.x86_64
[root#sudhakar ~]# rpm -ivh perl-Git-1.7.1-2.el6_0.1.noarch.rpm
warning: perl-Git-1.7.1-2.el6_0.1.noarch.rpm: Header V4 DSA/SHA1 Signature, key ID 192a7d7d: NOKEY
error: Failed dependencies:
git = 1.7.1-2.el6_0.1 is needed by perl-Git-1.7.1-2.el6_0.1.noarch
Whereas i have downloaded both the packages required here, but unable to install any of them.
Use yum localinstall git-1.7.1-2.el6_0.1.x86_64.rpm. It will automatically download the required dependencies if you have yum repositories configured.
When try to install maxscale, it ask libpcre. How to install libpcre
on linux?
rpm -ivh maxscale-1.4.3-1.rhel.7.x86_64.rpm
warning: maxscale-1.4.3-1.rhel.7.x86_64.rpm: Header V4 RSA/SHA1 Signature, key ID 8167ee24: NOKEY
error: Failed dependencies:
libpcre.so.1()(64bit) is needed by maxscale-1.4.3-1.x86_64
This worked for me:
yum install pcre2-devel.x86_64
im getting this error when trying to installing this rpm into the kernel server of 64bit.
The error is as the log below:
rpm -ivh libstdc++-devel-4.4.4-13.el6.x86_64.rpm
warning: libstdc++-devel-4.4.4-13.el6.x86_64.rpm: Header V4 DSA/SHA1 Signature, key ID 192a7d7d: NOKEY
error: Failed dependencies:
libstdc++(x86-64) = 4.4.4-13.el6 is needed by libstdc++-devel-4.4.4-13.el6.x86_64
Any suggestions would be appreciated. Thanks..
You can only install a RPM after you have installed all its dependencies.
To install this RPM first you need to install libstdc++-4.4.4-13.el6.x86_64.rpm
You can do this in two ways .
Method 1 :
Download and install libstdc++-4.4.4-13.el6.x86_64.rpm first and then libstdc++-devel afterwards.
wget ftp://ftp.pbone.net/mirror/ftp.scientificlinux.org/linux/scientific/6.0/x86_64/os/Packages/libstdc++-4.4.4-13.el6.x86_64.rpm
rpm -ivh libstdc++-4.4.4-13.el6.x86_64.rpm
rpm -ivh libstdc++-4.4.4-13.el6.x86_64.rpm
Method 2 :
You can use yum to automatically resolve and install dependencies for you
yum localinstall libstdc++-devel-4.4.4-13.el6.x86_64.rpm
If that doesn't work, try
yum install libstdc++-devel
Im trying to install this rpm "libstdc++-4.4.4-13.el6.x86_64"
But Im having this error:-
# rpm -ivh libstdc++-4.4.4-13.el6.x86_64.rpm
warning: libstdc++-4.4.4-13.el6.x86_64.rpm: Header V3 DSA/SHA1 Signature, key ID 1d1e034b: NOKEY
Preparing... ########################################### [100%]
package libstdc++-4.4.7-4.el6.x86_64 (which is newer than libstdc++-4.4.4-13.el6.x86_64) is already installed
file /usr/lib64/libstdc++.so.6.0.13 from install of libstdc++-4.4.4-13.el6.x86_64 conflicts with file from package libstdc++-4.4.7-4.el6.x86_64
Im also trying to install this rpm "libstdc++-4.4.7-4.el6.x86_64" as my previous attempt to install "libstdc++-4.4.4-13.el6.x86_64", but the method does not working.
I did try replace "rpm -ivh --replacefiles" command., in order to replace libstdc++-4.4.7-4.el6.x86_64 with libstdc++-4.4.7-4.el6.x86_64, as well with libstdc++-4.4.4-13.el6.x86_64 but the method is also does not working.
I also did try the sudo command, but still getting the similar situation. Any suggestions would be nice
Its alrite, I have got it figure out..
Just force installation the rpm using this command
rpm -ivh --old-package
rpm -ivh --force
Either should do.
i am new on linux. i am using oracle linux... el5. i am trying to install oracle 11g.
i have to install some packets for pre-installation task. ex: compat-libstdc++-33-3.2.3
i downloaded the rpm file and tried to install but i got a dependency check failure.
i have a later version of glibc as it can be seen below. what should i do? sould i install ALL the dependencies even if i had a later version?
[root#localhost ferhat]# rpm -iv compat-libstdc++-33-3.2.3-61.x86_64.rpm
warning: compat-libstdc++-33-3.2.3-61.x86_64.rpm: Header V3 DSA signature: NOKEY, key ID e8562897
error: Failed dependencies:
libc.so.6()(64bit) is needed by compat-libstdc++-33-3.2.3-61.x86_64
libc.so.6(GLIBC_2.2.5)(64bit) is needed by compat-libstdc++-33-3.2.3-61.x86_64
libc.so.6(GLIBC_2.3)(64bit) is needed by compat-libstdc++-33-3.2.3-61.x86_64
libgcc_s.so.1()(64bit) is needed by compat-libstdc++-33-3.2.3-61.x86_64
libgcc_s.so.1(GCC_3.0)(64bit) is needed by compat-libstdc++-33-3.2.3-61.x86_64
libgcc_s.so.1(GCC_3.3)(64bit) is needed by compat-libstdc++-33-3.2.3-61.x86_64
libm.so.6()(64bit) is needed by compat-libstdc++-33-3.2.3-61.x86_64
[root#localhost ferhat]#
[root#localhost ferhat]#
[root#localhost ferhat]# rpm -q glibc
glibc-2.5-49
[root#localhost ferhat]# rpm -q gcc
gcc-4.1.2-48.el5
Regards...
Use your package manager instead of pure RPM for installing. What is it in your distribution, yum?