- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: install rpm problem
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
06-02-2004 07:52 PM
06-02-2004 07:52 PM
# rpm -ivh gcc-3.2-7.i386.rpm
error: Failed dependencies:
binutils >= 2.12.90.0.7-1 is needed by gcc-3.2-7
glibc-devel >= 2.2.90-12 is needed by gcc-3.2-7
#rpm -ivh gcc-3.2.2-5.i386.rpm
error: Failed dependencies:
binutils >= 2.12.90.0.7-1 is needed by gcc-3.2.2-5
cpp = 3.2.2-5 is needed by gcc-3.2.2-5
glibc-devel >= 2.2.90-12 is needed by gcc-3.2.2-5
libgcc >= 3.2.2-5 is needed by gcc-3.2.2-5
#rpm -ivh gcc-2.96-110.i386.rpm
error: Failed dependencies:
binutils >= 2.11.93.0.2-6 is needed by gcc-2.96-110
cpp = 2.96-110 is needed by gcc-2.96-110
glibc-devel is needed by gcc-2.96-110
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2004 07:56 PM
06-02-2004 07:56 PM
Re: install rpm problem
So to install gcc-3.2-7.i386.rpm
you need first install binutils,glibc-devel ,etc
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2004 07:57 PM
06-02-2004 07:57 PM
Re: install rpm problem
You really do have to follow the trail of errors, installing the packages as you go.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2004 08:26 PM
06-02-2004 08:26 PM
Re: install rpm problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2004 08:36 PM
06-02-2004 08:36 PM
Re: install rpm problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2004 09:12 PM
06-02-2004 09:12 PM
Re: install rpm problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2004 10:20 PM
06-02-2004 10:20 PM
Re: install rpm problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2004 07:12 PM
06-03-2004 07:12 PM
Solutionas an extra those tools can also be used to keep your system up to date.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-04-2004 03:02 AM
06-04-2004 03:02 AM
Re: install rpm problem
option rather than the "i".
For example: rpm -Uvh gcc-3.2-7.i386.rpm would be better..
When you find the binutils and the glibc-devel packages append them to the original rpm command and the dependencies will be resolved..
Try not to figure out which one to do first.. Do them all together.. ie:
rpm -Uvh gcc-3.2-7....rpm binutils-2.12...rpm glibc-devel-2.2...rpm
One source or starting place for packages is freshrpms.net. They have the apt-get and synaptic programs to aid in automatically installing and upgrading. You can also download individual packages..
have fun..