- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: AutoReqProv in RPM
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2006 01:32 PM
11-22-2006 01:32 PM
AutoReqProv in RPM
in RPM. The library file is on the computer, but rpm failed during the installation and complained about the dependancy.
does anyone have idea how to troubleshoot it?
I use linux 4.
thank you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2006 05:48 PM
11-22-2006 05:48 PM
Re: AutoReqProv in RPM
Two choices:
1) fulfil its dependency. It asks for a specific libary or software which you fail to provide in this thread. Install what its asking for. Here is a little trick, in case it needs base OS software. Make a directory with all rpm's in it. cd to it. rpm -ivh --aid
2) rpm with the --force or --nodeps parameter. This is a BAD option because probably the software will not work.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2006 06:24 PM
11-22-2006 06:24 PM
Re: AutoReqProv in RPM
This is a feature, not bug :-)
RPM doesn't check if this library exists, but if there is RPM package installed which provides this library.
Rgds,
Vitaly
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2006 06:19 AM
11-28-2006 06:19 AM
Re: AutoReqProv in RPM
##let me elaborate more, I have two rpm packages
Cots.rpm
App.rpm
App.rpm failed on the dependance check because it needs one library file from Cots.rpm.
But, Cots.rpm installed sucessfully and the needed library (a.so) is in the /usr/local/cots/lib. So, why App.rpm failed?
so, how do I fix the problem?
thank YOU
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2006 07:23 AM
11-28-2006 07:23 AM
Re: AutoReqProv in RPM
If you are sure the required libraries are installed, then you just installl the rpm using --nodeps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2006 09:05 PM
11-28-2006 09:05 PM
Re: AutoReqProv in RPM
>Cots.rpm
>App.rpm
>App.rpm failed on the dependance check >because it needs one library file from >Cots.rpm.
>But, Cots.rpm installed sucessfully and >the needed library (a.so) is in >the /usr/local/cots/lib. So, why App.rpm >failed?
can you please send us output of
1) rpm -ql cots
2) rpm -qRp app.rpm