Tagged Questions
18
votes
4answers
8k views
Can yum be used to list the contents of a package?
I know how to use rpm to list the contents of a package (rpm -qpil package.rpm). Is there any way to do this with yum?
2
votes
3answers
102 views
Determine if package installed with Yum Python API?
TLDR; I need simple a Python call given a package name (e.g., 'make') to see if it's installed; if not, install it (I can do the latter part).
Problem:
So there are a few code examples given in ...
2
votes
1answer
52 views
How do I find out w/YUM or RPM what files it installed?
I installed Fedora 16 last night and saw it had NoMachine's NX in the repo. I did a
yum install nx
and it says it installed correctly, but for the life of me I can't find the .service or ...
2
votes
4answers
2k views
how do I find which rpm package supplies a file I'm looking for?
As an example, I am looking for a mod_files.sh file which presumably would come with the php-devel package. I guessed that yum would install the mod_files.sh file with the php-devel x86_64 ...
2
votes
2answers
921 views
Given an rpm package name, query the yum database for updates
I was imagining a 3-line Python script to do this but the yum Python API is impenetrable. Is this even possible?
Is writing a wrapper for 'yum list package-name' the only way to do this?
1
vote
1answer
90 views
Validating a yum repository for dependencies
I am trying to create a custom rhel5.5 repository for my usage and I am having a hard time validating if I have all the dependencies for every package in my repository.
What I would want to do is do ...
1
vote
2answers
130 views
Mass extraction of provides from yum?
I have a set of yum repositories. I have a large collection of rpms from http://pkgs.repoforge.org/. I don't want to import some of those rpms due to conflicts that they would cause. I'd like to ...
1
vote
1answer
96 views
Side by side RPM versions
What is the "right" way, if any, to design RPMs so that multiple versions can be installed via YUM/RPM side by side without stomping on each other? For libraries, the right answer seems to be related ...
1
vote
1answer
468 views
pointing to a different yum repository
I am not sure if this is possible or if there's any easier way but I am trying to install a software package but its not available when I search for it within Yum. I read their documentation and they ...
1
vote
3answers
2k views
Determining the path that a yum package installed to [closed]
I've installed ffmpeg using yum under Redhat, and I'm having difficulty figuring out where (what path) it installed the package to. Is there an easy way of determining this without resorting to ...
0
votes
1answer
12 views
Yum install of home-made RPM giving error
I am trying to isntall something using "yum install my.rpm"
The problem is I am getting
TypeError: an integer is required
error: python callback <bound method RPMTransaction.callback of ...
0
votes
1answer
114 views
PECL OAuth for PHP 5.3 on CentOS 5
I am having trouble running pecl install oauth on centos 5. I installed PHP 5.3.6 using these instructions:
http://www.webtatic.com/packages/php53/
When I try to run pecl install oauth I get:
...
0
votes
1answer
29 views
Why can you install the same package by different names with Yum
On Centos 6 I can do
# yum install webserver
or
# yum install httpd
And both commands will install httpd (apache)
I am building an RPM and I don't know which one I should use or why they are ...
0
votes
1answer
99 views
RPM+Yum: install two packages with the same name and different versions simultaneously
For moderators: this question is about development of RPM based installer.
I'm developing packaging system for our software. We've designed our update management so that when we want to move to the ...
0
votes
2answers
20 views
How to get the version of the software when I use yum install command?
Is there any way to know which version of the software will be installed using yum install command?
For example:
$ yum search zsh
Loaded plugins: fastestmirror
=== Matched: zsh ===
zsh.x86_64 : A ...
0
votes
1answer
74 views
How to detect rpm post scriptlet failure
How to detect if the rpm package installation's post install section code failed ?
I've got bunch of rpm packages and want to find the packages that have failed in post install section.
Post install ...
0
votes
0answers
77 views
Yum: install two packages with the same name and different versions simultaneously [closed]
I need to have two packages with the same name and different versions installed simultaneously. I've built these packages so I can change anything there, but the only difference that should be between ...
0
votes
2answers
20 views
Package updating another package from another repository
I've created repository where I store my own packages.
System uses my and some other public repositories.
So now I've a package in my repo which I want to be as an update for some other package from ...
0
votes
1answer
258 views
Can I remove an RPM from within .spec scripts sections?
I'm building a new version of an existing .spec/rpm and I want to remove a dependency that was required by that is not anymore (previous .spec had "Requires: rpm-xyz).
So on top of removing the ...
0
votes
1answer
353 views
No emacs package on rpmforge (RHEL)
When trying to install emacs on RHEL 5.5, I get the following error:
$ sudo yum install emacs
Loaded plugins: rhnplugin, security
This system is not registered with RHN.
RHN support will be ...
0
votes
2answers
539 views
Building with rpmbuild under Ubuntu
I need to build yum with a patch under Ubuntu 10.4 (reason being that i need a yum with chroot support for my vserver instance)
Since yum src for ubuntu where not avaliable (3rd party repos) i ...
0
votes
1answer
36 views
Is linux packet update server connection secured?
I'm distributing custom applications for redhat. I want to set up my update server to have the client applications auto-updated. I need the update process to be secured.
Can the connection to the ...
0
votes
1answer
224 views
Automatically test dependencies of complex RPM set
I have a software suite of ~150 custom RPMs, with fairly complex dependencies between them:
the tree of dependencies for each package is usually about five levels deep
there are several packages ...
0
votes
1answer
780 views
Problem with glaux.h locating
I try to compile code, that beggins with:
#include<stdlib.h>
#include<GL/gl.h>
#include<glaux.h>
with command:
cc -o test test.c -I/usr/local/include -L/usr/local/lib -lMesaaux ...
0
votes
2answers
228 views
How to use an RPM option in a yum upgrade?
I need to upgrade an RPM installed via YUM, which has an fatal bug in its postun section.
This will get run (and delete the program's user, which is what I want to not happen) when I run "yum ...