- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: what is the package popt-devel?
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
09-26-2009 11:01 AM
09-26-2009 11:01 AM
what is the package popt-devel?
on my centos machine
[root@vworkspace qrdesktop]# rpm -qa | grep popt
popt-1.10.2.3-9.el5
on my suse machine
sled11:~ # rpm -qa | grep popt
popt-1.7-37.8
[code]
[root@vworkspace ~]# cd vworkspaceLinuxClient/qrdesktop/
[root@vworkspace qrdesktop]# ./install.sh
========================================================
Beginning Qrdesktop with connection manager installation
========================================================
==================================
Performing Pre-requisite checks...
==================================
Installer is now checking for core libraries:
Installer is checking for gcc-c++...
Installer is checking for libstdc++-devel...
Installer is checking for libpng-devel...
Installer is checking for popt-devel...ERROR: package popt-devel is not found.\n
Some of the core libraries that are required are not present. Installation cannot continue.
[/code]
simple answer to where i can find is google. but i am not able to get the right version of the package. only sesible link i get is http://www.rpmfind.net/linux/rpm2html/search.php?query=popt-devel
which doesnt have what i need (version)
i got the tarballs somewhere but there is a version incompatibility.
what is this popt-devel package and why is it so difficult to find.
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-26-2009 11:09 AM
09-26-2009 11:09 AM
Re: what is the package popt-devel?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-26-2009 12:52 PM
09-26-2009 12:52 PM
Re: what is the package popt-devel?
> what is the package popt-devel?
Every package in Linux, mostly rpm packages, follow some naming conventions to make it easier to manage packages. Sometimes software is packaged into two packages, one without -devel and one with -devel. Packages ending in -devel are those that include all the necessary for development for the package (header files, tools used by the software, etc). The other package, the one without -devel, does only include the binaries, manpages and every other files just needed to run the software.
You can read more on this naming convention here:
http://www.rpm.org/max-rpm/ch-rpm-file-format.html
> why is it so difficult to find
Well, once you know how this naming convention goes, just apply it to your search pattern:
popt-devel-1.7-37.8
and you will end up with the correct links.
For SuSE you might try, for example:
http://demeter.uni-regensburg.de/SLES11-SDK-x86/DVD1/suse/i586/
Kind regards,
Kobylka
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2009 01:36 AM
09-27-2009 01:36 AM
Re: what is the package popt-devel?
still sometimes this is a real pain to get dependencies resolved.
thanks for your help.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2009 05:42 AM
09-27-2009 05:42 AM
Re: what is the package popt-devel?
The "rpm" command is one of the low-level tools: it allows you to manage packages one by one, and requires you to sort out the dependencies manually.
In CentOS, the high-level tool is "yum"; I'm not sure what SuSE uses, but I believe it has something available. The high-level tools will handle the dependencies automatically and usually allow you to configure a set of locations (repositories) for downloading packages automatically.
With these tools, when you specify "install package A", the program might ask "Package A requires packages B and C; the total download size would be XXX kb, OK to download and install them all?"
Using the high-level tools instead of just the "rpm" command will save you a _lot_ of time and sanity in the long run.
MK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2009 09:44 AM
09-28-2009 09:44 AM
Re: what is the package popt-devel?
well :)
infact only after yum failed to resolve it for me, i went hunting .....
anyway i will try to search
thanks again for your help